@stigg/api-client-js 2.80.0 → 2.80.2
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/package.json +1 -1
- package/src/generated/sdk.d.ts +4 -4
- package/src/generated/sdk.js +2 -2
package/package.json
CHANGED
package/src/generated/sdk.d.ts
CHANGED
|
@@ -1949,7 +1949,7 @@ export declare type HubspotCredentialsInput = {
|
|
|
1949
1949
|
authorizationCode: Scalars['String'];
|
|
1950
1950
|
refreshToken?: InputMaybe<Scalars['String']>;
|
|
1951
1951
|
};
|
|
1952
|
-
export declare type
|
|
1952
|
+
export declare type ImportCustomerBulkInput = {
|
|
1953
1953
|
customers: Array<ImportCustomerInput>;
|
|
1954
1954
|
environmentId?: InputMaybe<Scalars['String']>;
|
|
1955
1955
|
};
|
|
@@ -2021,7 +2021,7 @@ export declare type ImportSubscriptionInput = {
|
|
|
2021
2021
|
/** Indicates the last update of the subscription. In case there's already existing subscription that was updated after that date, it will skip import this subscription */
|
|
2022
2022
|
updatedAt?: InputMaybe<Scalars['DateTime']>;
|
|
2023
2023
|
};
|
|
2024
|
-
export declare type
|
|
2024
|
+
export declare type ImportSubscriptionsBulkInput = {
|
|
2025
2025
|
environmentId?: InputMaybe<Scalars['String']>;
|
|
2026
2026
|
subscriptions: Array<ImportSubscriptionInput>;
|
|
2027
2027
|
};
|
|
@@ -5737,7 +5737,7 @@ export declare type ProvisionCustomerMutation = {
|
|
|
5737
5737
|
} & ProvisionCustomerFragment);
|
|
5738
5738
|
};
|
|
5739
5739
|
export declare type ImportCustomerBulkMutationVariables = Exact<{
|
|
5740
|
-
input:
|
|
5740
|
+
input: ImportCustomerBulkInput;
|
|
5741
5741
|
}>;
|
|
5742
5742
|
export declare type ImportCustomerBulkMutation = {
|
|
5743
5743
|
__typename?: 'Mutation';
|
|
@@ -5808,7 +5808,7 @@ export declare type ApplySubscriptionMutation = {
|
|
|
5808
5808
|
} & ApplySubscriptionFragment);
|
|
5809
5809
|
};
|
|
5810
5810
|
export declare type ImportSubscriptionsBulkMutationVariables = Exact<{
|
|
5811
|
-
input:
|
|
5811
|
+
input: ImportSubscriptionsBulkInput;
|
|
5812
5812
|
}>;
|
|
5813
5813
|
export declare type ImportSubscriptionsBulkMutation = {
|
|
5814
5814
|
__typename?: 'Mutation';
|
package/src/generated/sdk.js
CHANGED
|
@@ -2720,7 +2720,7 @@ ${exports.EntitlementFragmentDoc}
|
|
|
2720
2720
|
${exports.ResetPeriodConfigurationFragmentDoc}
|
|
2721
2721
|
${exports.FeatureFragmentDoc}`;
|
|
2722
2722
|
exports.ImportCustomerBulkDocument = (0, graphql_tag_1.default) `
|
|
2723
|
-
mutation ImportCustomerBulk($input:
|
|
2723
|
+
mutation ImportCustomerBulk($input: ImportCustomerBulkInput!) {
|
|
2724
2724
|
importCustomersBulk(input: $input)
|
|
2725
2725
|
}
|
|
2726
2726
|
`;
|
|
@@ -2802,7 +2802,7 @@ ${exports.EntitlementFragmentDoc}
|
|
|
2802
2802
|
${exports.ResetPeriodConfigurationFragmentDoc}
|
|
2803
2803
|
${exports.FeatureFragmentDoc}`;
|
|
2804
2804
|
exports.ImportSubscriptionsBulkDocument = (0, graphql_tag_1.default) `
|
|
2805
|
-
mutation ImportSubscriptionsBulk($input:
|
|
2805
|
+
mutation ImportSubscriptionsBulk($input: ImportSubscriptionsBulkInput!) {
|
|
2806
2806
|
importSubscriptionsBulk(input: $input)
|
|
2807
2807
|
}
|
|
2808
2808
|
`;
|