@outseta/api-client 0.3.26 → 0.3.28
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 +2 -0
- package/package.json +1 -1
- package/src/generated/models/accountGetAllAccountsParams.ts +10 -0
- package/src/generated/models/activityGetAllParams.ts +10 -0
- package/src/generated/models/articleGetAllArticlesParams.ts +10 -0
- package/src/generated/models/billSettingsAllOf.ts +2 -0
- package/src/generated/models/caseGetAllCasesParams.ts +10 -0
- package/src/generated/models/dealGetAllDealsParams.ts +10 -0
- package/src/generated/models/discountCouponGetAllDiscountCouponsParams.ts +10 -0
- package/src/generated/models/discountCouponGetDiscountCouponRedemptionsParams.ts +10 -0
- package/src/generated/models/emailListGetAllSubscriptionsParams.ts +10 -0
- package/src/generated/models/personGetAllPeopleParams.ts +10 -0
- package/src/generated/models/qcountConfigSettingType.ts +3 -1
- package/src/generated/models/sendGridDomainAuthenticationAllOf.ts +1 -0
- package/src/generated/models/subscriptionAddOnGetAllSubscriptionsAddOnsParams.ts +10 -0
- package/src/generated/models/subscriptionGetAllSubscriptionsParams.ts +10 -0
package/dist/index.js
CHANGED
|
@@ -1750,6 +1750,8 @@ var QcountConfigSettingType = {
|
|
|
1750
1750
|
Stripe_ApplePayMerchantIdDomainAssociation: 193,
|
|
1751
1751
|
Stripe_WebhookSecret: 194,
|
|
1752
1752
|
Stripe_OnlySyncOutsetaCustomers: 195,
|
|
1753
|
+
Stripe_Checkout_RequireBillingAddress: 196,
|
|
1754
|
+
Stripe_Checkout_RequireConsentTermsOfService: 197,
|
|
1753
1755
|
Webflow_AccessToken: 200,
|
|
1754
1756
|
Webflow_SyncEnabled: 201,
|
|
1755
1757
|
Webflow_SyncConfiguration: 202,
|
package/package.json
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
// @ts-nocheck
|
|
2
|
+
import type { LimitParameter } from './limitParameter';
|
|
3
|
+
import type { OffsetParameter } from './offsetParameter';
|
|
2
4
|
|
|
3
5
|
export type AccountGetAllAccountsParams = {
|
|
4
6
|
/**
|
|
@@ -11,4 +13,12 @@ segmentUid?: string | null;
|
|
|
11
13
|
* @nullable
|
|
12
14
|
*/
|
|
13
15
|
q?: string | null;
|
|
16
|
+
/**
|
|
17
|
+
* Requested page size. The server caps it at 100, or 25 when requested fields expand child objects or require additional queries; metadata.limit reports the applied value. Use offset=1 for the second page.
|
|
18
|
+
*/
|
|
19
|
+
limit?: LimitParameter;
|
|
20
|
+
/**
|
|
21
|
+
* Zero-based page number, not a record offset. With limit=50, the second page is offset=1; offset=50 is page index 50 (records 2501-2550).
|
|
22
|
+
*/
|
|
23
|
+
offset?: OffsetParameter;
|
|
14
24
|
};
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
// @ts-nocheck
|
|
2
2
|
import type { ActivityCriteria } from './activityCriteria';
|
|
3
|
+
import type { LimitParameter } from './limitParameter';
|
|
4
|
+
import type { OffsetParameter } from './offsetParameter';
|
|
3
5
|
|
|
4
6
|
export type ActivityGetAllParams = {
|
|
5
7
|
/**
|
|
@@ -18,4 +20,12 @@ EntityType?: string | null;
|
|
|
18
20
|
* @nullable
|
|
19
21
|
*/
|
|
20
22
|
EntityUid?: string | null;
|
|
23
|
+
/**
|
|
24
|
+
* Requested page size. The server caps it at 100, or 25 when requested fields expand child objects or require additional queries; metadata.limit reports the applied value. Use offset=1 for the second page.
|
|
25
|
+
*/
|
|
26
|
+
limit?: LimitParameter;
|
|
27
|
+
/**
|
|
28
|
+
* Zero-based page number, not a record offset. With limit=50, the second page is offset=1; offset=50 is page index 50 (records 2501-2550).
|
|
29
|
+
*/
|
|
30
|
+
offset?: OffsetParameter;
|
|
21
31
|
};
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
// @ts-nocheck
|
|
2
|
+
import type { LimitParameter } from './limitParameter';
|
|
3
|
+
import type { OffsetParameter } from './offsetParameter';
|
|
2
4
|
|
|
3
5
|
export type ArticleGetAllArticlesParams = {
|
|
4
6
|
/**
|
|
@@ -6,4 +8,12 @@ export type ArticleGetAllArticlesParams = {
|
|
|
6
8
|
* @nullable
|
|
7
9
|
*/
|
|
8
10
|
q?: string | null;
|
|
11
|
+
/**
|
|
12
|
+
* Requested page size. The server caps it at 100, or 25 when requested fields expand child objects or require additional queries; metadata.limit reports the applied value. Use offset=1 for the second page.
|
|
13
|
+
*/
|
|
14
|
+
limit?: LimitParameter;
|
|
15
|
+
/**
|
|
16
|
+
* Zero-based page number, not a record offset. With limit=50, the second page is offset=1; offset=50 is page index 50 (records 2501-2550).
|
|
17
|
+
*/
|
|
18
|
+
offset?: OffsetParameter;
|
|
9
19
|
};
|
|
@@ -8,6 +8,8 @@ export type BillSettingsAllOf = {
|
|
|
8
8
|
PaymentsMode?: PaymentsMode;
|
|
9
9
|
BillingSystem?: BillingSystem;
|
|
10
10
|
RestrictSubscriptionActions?: boolean;
|
|
11
|
+
StripeCheckoutRequireBillingAddress?: boolean;
|
|
12
|
+
StripeCheckoutRequireConsentTermsOfService?: boolean;
|
|
11
13
|
/** @nullable */
|
|
12
14
|
StripeTaxCode?: string | null;
|
|
13
15
|
StripeTaxEnabled?: boolean;
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
// @ts-nocheck
|
|
2
|
+
import type { LimitParameter } from './limitParameter';
|
|
3
|
+
import type { OffsetParameter } from './offsetParameter';
|
|
2
4
|
|
|
3
5
|
export type CaseGetAllCasesParams = {
|
|
4
6
|
/**
|
|
@@ -11,4 +13,12 @@ q?: string | null;
|
|
|
11
13
|
* @nullable
|
|
12
14
|
*/
|
|
13
15
|
tagUid?: string | null;
|
|
16
|
+
/**
|
|
17
|
+
* Requested page size. The server caps it at 100, or 25 when requested fields expand child objects or require additional queries; metadata.limit reports the applied value. Use offset=1 for the second page.
|
|
18
|
+
*/
|
|
19
|
+
limit?: LimitParameter;
|
|
20
|
+
/**
|
|
21
|
+
* Zero-based page number, not a record offset. With limit=50, the second page is offset=1; offset=50 is page index 50 (records 2501-2550).
|
|
22
|
+
*/
|
|
23
|
+
offset?: OffsetParameter;
|
|
14
24
|
};
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
// @ts-nocheck
|
|
2
|
+
import type { LimitParameter } from './limitParameter';
|
|
3
|
+
import type { OffsetParameter } from './offsetParameter';
|
|
2
4
|
|
|
3
5
|
export type DealGetAllDealsParams = {
|
|
4
6
|
/**
|
|
@@ -11,4 +13,12 @@ ownerUid?: string | null;
|
|
|
11
13
|
* @nullable
|
|
12
14
|
*/
|
|
13
15
|
q?: string | null;
|
|
16
|
+
/**
|
|
17
|
+
* Requested page size. The server caps it at 100, or 25 when requested fields expand child objects or require additional queries; metadata.limit reports the applied value. Use offset=1 for the second page.
|
|
18
|
+
*/
|
|
19
|
+
limit?: LimitParameter;
|
|
20
|
+
/**
|
|
21
|
+
* Zero-based page number, not a record offset. With limit=50, the second page is offset=1; offset=50 is page index 50 (records 2501-2550).
|
|
22
|
+
*/
|
|
23
|
+
offset?: OffsetParameter;
|
|
14
24
|
};
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
// @ts-nocheck
|
|
2
|
+
import type { LimitParameter } from './limitParameter';
|
|
3
|
+
import type { OffsetParameter } from './offsetParameter';
|
|
2
4
|
|
|
3
5
|
export type DiscountCouponGetAllDiscountCouponsParams = {
|
|
4
6
|
/**
|
|
@@ -15,4 +17,12 @@ q?: string | null;
|
|
|
15
17
|
* @nullable
|
|
16
18
|
*/
|
|
17
19
|
planUid?: string | null;
|
|
20
|
+
/**
|
|
21
|
+
* Requested page size. The server caps it at 100, or 25 when requested fields expand child objects or require additional queries; metadata.limit reports the applied value. Use offset=1 for the second page.
|
|
22
|
+
*/
|
|
23
|
+
limit?: LimitParameter;
|
|
24
|
+
/**
|
|
25
|
+
* Zero-based page number, not a record offset. With limit=50, the second page is offset=1; offset=50 is page index 50 (records 2501-2550).
|
|
26
|
+
*/
|
|
27
|
+
offset?: OffsetParameter;
|
|
18
28
|
};
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
// @ts-nocheck
|
|
2
|
+
import type { LimitParameter } from './limitParameter';
|
|
3
|
+
import type { OffsetParameter } from './offsetParameter';
|
|
2
4
|
|
|
3
5
|
export type DiscountCouponGetDiscountCouponRedemptionsParams = {
|
|
4
6
|
/**
|
|
@@ -11,4 +13,12 @@ q?: string | null;
|
|
|
11
13
|
* @nullable
|
|
12
14
|
*/
|
|
13
15
|
isActive?: boolean | null;
|
|
16
|
+
/**
|
|
17
|
+
* Requested page size. The server caps it at 100, or 25 when requested fields expand child objects or require additional queries; metadata.limit reports the applied value. Use offset=1 for the second page.
|
|
18
|
+
*/
|
|
19
|
+
limit?: LimitParameter;
|
|
20
|
+
/**
|
|
21
|
+
* Zero-based page number, not a record offset. With limit=50, the second page is offset=1; offset=50 is page index 50 (records 2501-2550).
|
|
22
|
+
*/
|
|
23
|
+
offset?: OffsetParameter;
|
|
14
24
|
};
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
// @ts-nocheck
|
|
2
|
+
import type { LimitParameter } from './limitParameter';
|
|
3
|
+
import type { OffsetParameter } from './offsetParameter';
|
|
2
4
|
|
|
3
5
|
export type EmailListGetAllSubscriptionsParams = {
|
|
4
6
|
/**
|
|
@@ -6,4 +8,12 @@ export type EmailListGetAllSubscriptionsParams = {
|
|
|
6
8
|
* @nullable
|
|
7
9
|
*/
|
|
8
10
|
q?: string | null;
|
|
11
|
+
/**
|
|
12
|
+
* Requested page size. The server caps it at 100, or 25 when requested fields expand child objects or require additional queries; metadata.limit reports the applied value. Use offset=1 for the second page.
|
|
13
|
+
*/
|
|
14
|
+
limit?: LimitParameter;
|
|
15
|
+
/**
|
|
16
|
+
* Zero-based page number, not a record offset. With limit=50, the second page is offset=1; offset=50 is page index 50 (records 2501-2550).
|
|
17
|
+
*/
|
|
18
|
+
offset?: OffsetParameter;
|
|
9
19
|
};
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
// @ts-nocheck
|
|
2
|
+
import type { LimitParameter } from './limitParameter';
|
|
3
|
+
import type { OffsetParameter } from './offsetParameter';
|
|
2
4
|
|
|
3
5
|
export type PersonGetAllPeopleParams = {
|
|
4
6
|
/**
|
|
@@ -6,4 +8,12 @@ export type PersonGetAllPeopleParams = {
|
|
|
6
8
|
* @nullable
|
|
7
9
|
*/
|
|
8
10
|
q?: string | null;
|
|
11
|
+
/**
|
|
12
|
+
* Requested page size. The server caps it at 100, or 25 when requested fields expand child objects or require additional queries; metadata.limit reports the applied value. Use offset=1 for the second page.
|
|
13
|
+
*/
|
|
14
|
+
limit?: LimitParameter;
|
|
15
|
+
/**
|
|
16
|
+
* Zero-based page number, not a record offset. With limit=50, the second page is offset=1; offset=50 is page index 50 (records 2501-2550).
|
|
17
|
+
*/
|
|
18
|
+
offset?: OffsetParameter;
|
|
9
19
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// @ts-nocheck
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
|
-
* `100` - Slack, `102` - MagicLinkApiKey, `103` - MagicLinkApiKeySecret, `104` - OAuth_HideCreateAccountLink, `105` - Chat_IsOffline, `106` - HostedPageCustomCode, `107` - RegistrationConfirmationEmailDelaySeconds, `108` - AccountCancellationReasons, `110` - WebhookSignatureKey, `111` - HostedProfileBackLink, `112` - AccountCancellationReasonRequired, `114` - Email_OutsetaBrandingDisabled, `119` - Email_BlacklistedInboundEmails, `121` - PasswordPolicy, `123` - CRM_FieldSortingEnabled, `124` - CRM_RegistrationCallbackLocations, `125` - KnowledgeBaseVersion, `126` - Support_SpamThreshold, `127` - Email_RestrictedPhrases, `128` - KnowledgeBaseLanguage, `130` - Billing_System, `131` - Billing_RestrictSubscriptionActions, `140` - TwoFactorAuthenticationEnabled, `142` - ForceTwoFactorAuthentication, `190` - Stripe_TaxEnabled, `192` - Stripe_TaxIdTypes, `193` - Stripe_ApplePayMerchantIdDomainAssociation, `194` - Stripe_WebhookSecret, `195` - Stripe_OnlySyncOutsetaCustomers, `200` - Webflow_AccessToken, `201` - Webflow_SyncEnabled, `202` - Webflow_SyncConfiguration, `203` - Webflow_ApiVersion, `550` - CopyQcount_AddOnMap, `551` - CopyQcount_AccountMap, `552` - CopyQcount_DiscountCouponMap, `553` - CopyQcount_InvoiceMap, `554` - CopyQcount_PersonMap, `555` - CopyQcount_PlanMap, `556` - CopyQcount_PlanFamilyMap, `557` - CopyQcount_SubscriptionMap, `558` - CopyQcount_TransactionMap, `570` - StripeMigration_LastAccountId, `571` - StripeMigration_LastInvoiceId, `572` - StripeMigration_LastExpiredSubscriptionId, `573` - StripeMigration_LastPostExportSubscriptionId, `574` - StripeMigration_LastUsageId, `575` - StripeMigration_SubscriptionExportDate, `576` - StripeMigration_SubscriptionExportIds, `577` - StripeMigration_SubscriptionAddOnExportIds, `578` - StripeMigration_SubscriptionCutoverDate, `579` - StripeMigration_LastPreCutoverExportSubscriptionId
|
|
4
|
+
* `100` - Slack, `102` - MagicLinkApiKey, `103` - MagicLinkApiKeySecret, `104` - OAuth_HideCreateAccountLink, `105` - Chat_IsOffline, `106` - HostedPageCustomCode, `107` - RegistrationConfirmationEmailDelaySeconds, `108` - AccountCancellationReasons, `110` - WebhookSignatureKey, `111` - HostedProfileBackLink, `112` - AccountCancellationReasonRequired, `114` - Email_OutsetaBrandingDisabled, `119` - Email_BlacklistedInboundEmails, `121` - PasswordPolicy, `123` - CRM_FieldSortingEnabled, `124` - CRM_RegistrationCallbackLocations, `125` - KnowledgeBaseVersion, `126` - Support_SpamThreshold, `127` - Email_RestrictedPhrases, `128` - KnowledgeBaseLanguage, `130` - Billing_System, `131` - Billing_RestrictSubscriptionActions, `140` - TwoFactorAuthenticationEnabled, `142` - ForceTwoFactorAuthentication, `190` - Stripe_TaxEnabled, `192` - Stripe_TaxIdTypes, `193` - Stripe_ApplePayMerchantIdDomainAssociation, `194` - Stripe_WebhookSecret, `195` - Stripe_OnlySyncOutsetaCustomers, `196` - Stripe_Checkout_RequireBillingAddress, `197` - Stripe_Checkout_RequireConsentTermsOfService, `200` - Webflow_AccessToken, `201` - Webflow_SyncEnabled, `202` - Webflow_SyncConfiguration, `203` - Webflow_ApiVersion, `550` - CopyQcount_AddOnMap, `551` - CopyQcount_AccountMap, `552` - CopyQcount_DiscountCouponMap, `553` - CopyQcount_InvoiceMap, `554` - CopyQcount_PersonMap, `555` - CopyQcount_PlanMap, `556` - CopyQcount_PlanFamilyMap, `557` - CopyQcount_SubscriptionMap, `558` - CopyQcount_TransactionMap, `570` - StripeMigration_LastAccountId, `571` - StripeMigration_LastInvoiceId, `572` - StripeMigration_LastExpiredSubscriptionId, `573` - StripeMigration_LastPostExportSubscriptionId, `574` - StripeMigration_LastUsageId, `575` - StripeMigration_SubscriptionExportDate, `576` - StripeMigration_SubscriptionExportIds, `577` - StripeMigration_SubscriptionAddOnExportIds, `578` - StripeMigration_SubscriptionCutoverDate, `579` - StripeMigration_LastPreCutoverExportSubscriptionId
|
|
5
5
|
*/
|
|
6
6
|
export type QcountConfigSettingType = typeof QcountConfigSettingType[keyof typeof QcountConfigSettingType];
|
|
7
7
|
|
|
@@ -37,6 +37,8 @@ export const QcountConfigSettingType = {
|
|
|
37
37
|
Stripe_ApplePayMerchantIdDomainAssociation: 193,
|
|
38
38
|
Stripe_WebhookSecret: 194,
|
|
39
39
|
Stripe_OnlySyncOutsetaCustomers: 195,
|
|
40
|
+
Stripe_Checkout_RequireBillingAddress: 196,
|
|
41
|
+
Stripe_Checkout_RequireConsentTermsOfService: 197,
|
|
40
42
|
Webflow_AccessToken: 200,
|
|
41
43
|
Webflow_SyncEnabled: 201,
|
|
42
44
|
Webflow_SyncConfiguration: 202,
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
// @ts-nocheck
|
|
2
|
+
import type { LimitParameter } from './limitParameter';
|
|
3
|
+
import type { OffsetParameter } from './offsetParameter';
|
|
2
4
|
|
|
3
5
|
export type SubscriptionAddOnGetAllSubscriptionsAddOnsParams = {
|
|
4
6
|
/**
|
|
@@ -6,4 +8,12 @@ export type SubscriptionAddOnGetAllSubscriptionsAddOnsParams = {
|
|
|
6
8
|
* @nullable
|
|
7
9
|
*/
|
|
8
10
|
status?: string | null;
|
|
11
|
+
/**
|
|
12
|
+
* Requested page size. The server caps it at 100, or 25 when requested fields expand child objects or require additional queries; metadata.limit reports the applied value. Use offset=1 for the second page.
|
|
13
|
+
*/
|
|
14
|
+
limit?: LimitParameter;
|
|
15
|
+
/**
|
|
16
|
+
* Zero-based page number, not a record offset. With limit=50, the second page is offset=1; offset=50 is page index 50 (records 2501-2550).
|
|
17
|
+
*/
|
|
18
|
+
offset?: OffsetParameter;
|
|
9
19
|
};
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
// @ts-nocheck
|
|
2
|
+
import type { LimitParameter } from './limitParameter';
|
|
3
|
+
import type { OffsetParameter } from './offsetParameter';
|
|
2
4
|
|
|
3
5
|
export type SubscriptionGetAllSubscriptionsParams = {
|
|
4
6
|
/**
|
|
@@ -11,4 +13,12 @@ current?: string | null;
|
|
|
11
13
|
* @nullable
|
|
12
14
|
*/
|
|
13
15
|
status?: string | null;
|
|
16
|
+
/**
|
|
17
|
+
* Requested page size. The server caps it at 100, or 25 when requested fields expand child objects or require additional queries; metadata.limit reports the applied value. Use offset=1 for the second page.
|
|
18
|
+
*/
|
|
19
|
+
limit?: LimitParameter;
|
|
20
|
+
/**
|
|
21
|
+
* Zero-based page number, not a record offset. With limit=50, the second page is offset=1; offset=50 is page index 50 (records 2501-2550).
|
|
22
|
+
*/
|
|
23
|
+
offset?: OffsetParameter;
|
|
14
24
|
};
|