@promoboxx/graphql-gateway-types 1.74.0 → 1.75.0
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/graphql.schema.json +29 -0
- package/index.d.ts +6 -0
- package/package.json +1 -1
- package/schema.graphql +1 -0
package/graphql.schema.json
CHANGED
|
@@ -37785,6 +37785,35 @@
|
|
|
37785
37785
|
"isDeprecated": false,
|
|
37786
37786
|
"deprecationReason": null
|
|
37787
37787
|
},
|
|
37788
|
+
{
|
|
37789
|
+
"name": "cancelPaymentIntent",
|
|
37790
|
+
"description": null,
|
|
37791
|
+
"args": [
|
|
37792
|
+
{
|
|
37793
|
+
"name": "id",
|
|
37794
|
+
"description": null,
|
|
37795
|
+
"type": {
|
|
37796
|
+
"kind": "NON_NULL",
|
|
37797
|
+
"name": null,
|
|
37798
|
+
"ofType": {
|
|
37799
|
+
"kind": "SCALAR",
|
|
37800
|
+
"name": "ID",
|
|
37801
|
+
"ofType": null
|
|
37802
|
+
}
|
|
37803
|
+
},
|
|
37804
|
+
"defaultValue": null,
|
|
37805
|
+
"isDeprecated": false,
|
|
37806
|
+
"deprecationReason": null
|
|
37807
|
+
}
|
|
37808
|
+
],
|
|
37809
|
+
"type": {
|
|
37810
|
+
"kind": "SCALAR",
|
|
37811
|
+
"name": "Boolean",
|
|
37812
|
+
"ofType": null
|
|
37813
|
+
},
|
|
37814
|
+
"isDeprecated": false,
|
|
37815
|
+
"deprecationReason": null
|
|
37816
|
+
},
|
|
37788
37817
|
{
|
|
37789
37818
|
"name": "createAccessInvitation",
|
|
37790
37819
|
"description": null,
|
package/index.d.ts
CHANGED
|
@@ -4130,6 +4130,7 @@ export type Mutation = {
|
|
|
4130
4130
|
/** @deprecated We want to remove all use cases were a File is required as input. Please use an alternative method. */
|
|
4131
4131
|
bulkUpdateRetailerData?: Maybe<UploadCsvResponse>;
|
|
4132
4132
|
cancelContract?: Maybe<Contract>;
|
|
4133
|
+
cancelPaymentIntent?: Maybe<Scalars['Boolean']['output']>;
|
|
4133
4134
|
createAccessInvitation?: Maybe<AccessInvitation>;
|
|
4134
4135
|
createAdAccount: AdAccount;
|
|
4135
4136
|
createAdAutomation?: Maybe<AdAutomation>;
|
|
@@ -4395,6 +4396,11 @@ export type MutationCancelContractArgs = {
|
|
|
4395
4396
|
};
|
|
4396
4397
|
|
|
4397
4398
|
|
|
4399
|
+
export type MutationCancelPaymentIntentArgs = {
|
|
4400
|
+
id: Scalars['ID']['input'];
|
|
4401
|
+
};
|
|
4402
|
+
|
|
4403
|
+
|
|
4398
4404
|
export type MutationCreateAccessInvitationArgs = {
|
|
4399
4405
|
params: CreateAccessInvitationParams;
|
|
4400
4406
|
};
|
package/package.json
CHANGED
package/schema.graphql
CHANGED
|
@@ -3984,6 +3984,7 @@ type Mutation {
|
|
|
3984
3984
|
bulkUpdateDigitalAsset(params: BulkUpdateDigitalAssetParams!): [DigitalAsset]
|
|
3985
3985
|
bulkUpdateRetailerData(brandId: String!, dryrun: Boolean, file: Upload!): UploadCsvResponse @deprecated(reason: "We want to remove all use cases were a File is required as input. Please use an alternative method.")
|
|
3986
3986
|
cancelContract(contractId: ID!, data: CancelContractData!): Contract
|
|
3987
|
+
cancelPaymentIntent(id: ID!): Boolean
|
|
3987
3988
|
createAccessInvitation(params: CreateAccessInvitationParams!): AccessInvitation
|
|
3988
3989
|
createAdAccount(params: CreateAdAccountParams!): AdAccount!
|
|
3989
3990
|
createAdAutomation(automation: CreateAdAutomationInput!): AdAutomation
|