@outseta/api-client 0.3.32 → 0.3.33
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js
CHANGED
|
@@ -1590,7 +1590,8 @@ var BackGroundTaskType = {
|
|
|
1590
1590
|
SendSpamCheckEmailTask: 18,
|
|
1591
1591
|
UpdateDiscordMemberRolesTask: 19,
|
|
1592
1592
|
SendInvoicePaidEmailTask: 20,
|
|
1593
|
-
ResendTrialLimitEmailTask: 21
|
|
1593
|
+
ResendTrialLimitEmailTask: 21,
|
|
1594
|
+
UpdateStripeSubscriptionApplicationFeePercentTask: 22
|
|
1594
1595
|
};
|
|
1595
1596
|
// src/generated/models/billingAddOnType.ts
|
|
1596
1597
|
var BillingAddOnType = {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// @ts-nocheck
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
|
-
* `1` - UpdateSegmentBackGroundTask, `2` - ImportPeopleTask, `3` - ImportAccountTask, `4` - ImportDealTask, `5` - ImportEmailList, `6` - RescheduleDripCampaignTask, `7` - DeleteSegmentPeopleTask, `8` - StartDripCampaignTask, `9` - WebflowSyncTask, `10` - UpdatePersonSegmentsTask, `11` - ImportDiscountCouponTask, `12` - RemoveDiscordUserFromAllServersTask, `13` - SendInvoiceEmailTask, `14` - UpdateDiscordUserRolesTask, `15` - StripeBillingSyncTask, `16` - UpdateStripeDefaultSourceTask, `17` - DeleteScheduledCampaignMessagesTask, `18` - SendSpamCheckEmailTask, `19` - UpdateDiscordMemberRolesTask, `20` - SendInvoicePaidEmailTask, `21` - ResendTrialLimitEmailTask
|
|
4
|
+
* `1` - UpdateSegmentBackGroundTask, `2` - ImportPeopleTask, `3` - ImportAccountTask, `4` - ImportDealTask, `5` - ImportEmailList, `6` - RescheduleDripCampaignTask, `7` - DeleteSegmentPeopleTask, `8` - StartDripCampaignTask, `9` - WebflowSyncTask, `10` - UpdatePersonSegmentsTask, `11` - ImportDiscountCouponTask, `12` - RemoveDiscordUserFromAllServersTask, `13` - SendInvoiceEmailTask, `14` - UpdateDiscordUserRolesTask, `15` - StripeBillingSyncTask, `16` - UpdateStripeDefaultSourceTask, `17` - DeleteScheduledCampaignMessagesTask, `18` - SendSpamCheckEmailTask, `19` - UpdateDiscordMemberRolesTask, `20` - SendInvoicePaidEmailTask, `21` - ResendTrialLimitEmailTask, `22` - UpdateStripeSubscriptionApplicationFeePercentTask
|
|
5
5
|
*/
|
|
6
6
|
export type BackGroundTaskType = typeof BackGroundTaskType[keyof typeof BackGroundTaskType];
|
|
7
7
|
|
|
@@ -29,4 +29,5 @@ export const BackGroundTaskType = {
|
|
|
29
29
|
UpdateDiscordMemberRolesTask: 19,
|
|
30
30
|
SendInvoicePaidEmailTask: 20,
|
|
31
31
|
ResendTrialLimitEmailTask: 21,
|
|
32
|
+
UpdateStripeSubscriptionApplicationFeePercentTask: 22,
|
|
32
33
|
} as const;
|