Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion src/objects/Stripe_Settings__c.object
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<CustomObject xmlns="http://soap.sforce.com/2006/04/metadata">
<customSettingsType>Hierarchy</customSettingsType>
<customSettingsVisibility>Protected</customSettingsVisibility>
<enableFeeds>false</enableFeeds>
<fields>
<fullName>Delayed_Webhook_Processor_ID__c</fullName>
Expand All @@ -10,6 +9,7 @@
<label>Delayed Webhook Processor ID</label>
<length>18</length>
<required>false</required>
<trackTrending>false</trackTrending>
<type>Text</type>
<unique>false</unique>
</fields>
Expand All @@ -19,6 +19,7 @@
<externalId>false</externalId>
<inlineHelpText>Check this to use the LIVE key in all API operations.</inlineHelpText>
<label>Is Live Environment</label>
<trackTrending>false</trackTrending>
<type>Checkbox</type>
</fields>
<fields>
Expand All @@ -27,6 +28,7 @@
<label>Stripe Publishable Live Key</label>
<length>40</length>
<required>true</required>
<trackTrending>false</trackTrending>
<type>Text</type>
<unique>false</unique>
</fields>
Expand All @@ -36,6 +38,7 @@
<label>Stripe Publishable Test Key</label>
<length>40</length>
<required>true</required>
<trackTrending>false</trackTrending>
<type>Text</type>
<unique>false</unique>
</fields>
Expand All @@ -46,6 +49,7 @@
<label>Stripe Secret Live Key</label>
<length>40</length>
<required>true</required>
<trackTrending>false</trackTrending>
<type>Text</type>
<unique>false</unique>
</fields>
Expand All @@ -56,8 +60,10 @@
<label>Stripe Secret Test Key</label>
<length>40</length>
<required>true</required>
<trackTrending>false</trackTrending>
<type>Text</type>
<unique>false</unique>
</fields>
<label>Stripe Settings</label>
<visibility>Protected</visibility>
</CustomObject>
41 changes: 41 additions & 0 deletions src/objects/Stripe_Webhook__c.object
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
<actionName>Accept</actionName>
<type>Default</type>
</actionOverrides>
<actionOverrides>
<actionName>CancelEdit</actionName>
<type>Default</type>
</actionOverrides>
<actionOverrides>
<actionName>Clone</actionName>
<type>Default</type>
Expand All @@ -16,6 +20,10 @@
<actionName>Edit</actionName>
<type>Default</type>
</actionOverrides>
<actionOverrides>
<actionName>Follow</actionName>
<type>Default</type>
</actionOverrides>
<actionOverrides>
<actionName>List</actionName>
<type>Default</type>
Expand All @@ -24,6 +32,10 @@
<actionName>New</actionName>
<type>Default</type>
</actionOverrides>
<actionOverrides>
<actionName>SaveEdit</actionName>
<type>Default</type>
</actionOverrides>
<actionOverrides>
<actionName>Tab</actionName>
<type>Default</type>
Expand All @@ -32,12 +44,18 @@
<actionName>View</actionName>
<type>Default</type>
</actionOverrides>
<allowInChatterGroups>false</allowInChatterGroups>
<compactLayoutAssignment>SYSTEM</compactLayoutAssignment>
<deploymentStatus>Deployed</deploymentStatus>
<description>Records created to assist with the processing of delayed webhooks from stripe.</description>
<enableActivities>false</enableActivities>
<enableBulkApi>true</enableBulkApi>
<enableFeeds>false</enableFeeds>
<enableHistory>false</enableHistory>
<enableReports>false</enableReports>
<enableSearch>false</enableSearch>
<enableSharing>true</enableSharing>
<enableStreamingApi>true</enableStreamingApi>
<fields>
<fullName>Attempts__c</fullName>
<defaultValue>1</defaultValue>
Expand All @@ -47,9 +65,29 @@
<precision>2</precision>
<required>true</required>
<scale>0</scale>
<trackTrending>false</trackTrending>
<type>Number</type>
<unique>false</unique>
</fields>
<fields>
<fullName>Error_Message__c</fullName>
<externalId>false</externalId>
<label>Error Message</label>
<length>2048</length>
<trackTrending>false</trackTrending>
<type>LongTextArea</type>
<visibleLines>5</visibleLines>
</fields>
<fields>
<fullName>Event_ID__c</fullName>
<externalId>false</externalId>
<label>Event ID</label>
<length>255</length>
<required>false</required>
<trackTrending>false</trackTrending>
<type>Text</type>
<unique>false</unique>
</fields>
<fields>
<fullName>Status__c</fullName>
<externalId>false</externalId>
Expand All @@ -69,13 +107,15 @@
</picklistValues>
<sorted>false</sorted>
</picklist>
<trackTrending>false</trackTrending>
<type>Picklist</type>
</fields>
<fields>
<fullName>Webhook_Data__c</fullName>
<externalId>false</externalId>
<label>Webhook Data</label>
<length>32768</length>
<trackTrending>false</trackTrending>
<type>LongTextArea</type>
<visibleLines>10</visibleLines>
</fields>
Expand All @@ -85,6 +125,7 @@
<label>Webhook Type</label>
<length>40</length>
<required>true</required>
<trackTrending>false</trackTrending>
<type>Text</type>
<unique>false</unique>
</fields>
Expand Down