@promoboxx/graphql-gateway-types 1.87.0 → 1.89.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.
@@ -38457,6 +38457,87 @@
38457
38457
  "isDeprecated": false,
38458
38458
  "deprecationReason": null
38459
38459
  },
38460
+ {
38461
+ "name": "createDigitalAssetAssociables",
38462
+ "description": null,
38463
+ "args": [
38464
+ {
38465
+ "name": "digital_asset_ids",
38466
+ "description": null,
38467
+ "type": {
38468
+ "kind": "NON_NULL",
38469
+ "name": null,
38470
+ "ofType": {
38471
+ "kind": "LIST",
38472
+ "name": null,
38473
+ "ofType": {
38474
+ "kind": "NON_NULL",
38475
+ "name": null,
38476
+ "ofType": {
38477
+ "kind": "SCALAR",
38478
+ "name": "ID",
38479
+ "ofType": null
38480
+ }
38481
+ }
38482
+ }
38483
+ },
38484
+ "defaultValue": null,
38485
+ "isDeprecated": false,
38486
+ "deprecationReason": null
38487
+ },
38488
+ {
38489
+ "name": "resource_id",
38490
+ "description": null,
38491
+ "type": {
38492
+ "kind": "NON_NULL",
38493
+ "name": null,
38494
+ "ofType": {
38495
+ "kind": "SCALAR",
38496
+ "name": "ID",
38497
+ "ofType": null
38498
+ }
38499
+ },
38500
+ "defaultValue": null,
38501
+ "isDeprecated": false,
38502
+ "deprecationReason": null
38503
+ },
38504
+ {
38505
+ "name": "resource_type",
38506
+ "description": null,
38507
+ "type": {
38508
+ "kind": "NON_NULL",
38509
+ "name": null,
38510
+ "ofType": {
38511
+ "kind": "SCALAR",
38512
+ "name": "String",
38513
+ "ofType": null
38514
+ }
38515
+ },
38516
+ "defaultValue": null,
38517
+ "isDeprecated": false,
38518
+ "deprecationReason": null
38519
+ }
38520
+ ],
38521
+ "type": {
38522
+ "kind": "NON_NULL",
38523
+ "name": null,
38524
+ "ofType": {
38525
+ "kind": "LIST",
38526
+ "name": null,
38527
+ "ofType": {
38528
+ "kind": "NON_NULL",
38529
+ "name": null,
38530
+ "ofType": {
38531
+ "kind": "OBJECT",
38532
+ "name": "DigitalAsset",
38533
+ "ofType": null
38534
+ }
38535
+ }
38536
+ }
38537
+ },
38538
+ "isDeprecated": false,
38539
+ "deprecationReason": null
38540
+ },
38460
38541
  {
38461
38542
  "name": "createDivision",
38462
38543
  "description": null,
package/index.d.ts CHANGED
@@ -4148,6 +4148,7 @@ export type Mutation = {
4148
4148
  createContentDiscoveryCampaign: Campaign;
4149
4149
  createCustomFieldValue?: Maybe<CustomFieldValues>;
4150
4150
  createDigitalAsset?: Maybe<DigitalAsset>;
4151
+ createDigitalAssetAssociables: Array<DigitalAsset>;
4151
4152
  createDivision?: Maybe<Division>;
4152
4153
  createFacebookAccount?: Maybe<FacebookAccount>;
4153
4154
  createFacebookPage?: Maybe<FacebookPage>;
@@ -4486,6 +4487,13 @@ export type MutationCreateDigitalAssetArgs = {
4486
4487
  };
4487
4488
 
4488
4489
 
4490
+ export type MutationCreateDigitalAssetAssociablesArgs = {
4491
+ digital_asset_ids: Array<Scalars['ID']['input']>;
4492
+ resource_id: Scalars['ID']['input'];
4493
+ resource_type: Scalars['String']['input'];
4494
+ };
4495
+
4496
+
4489
4497
  export type MutationCreateDivisionArgs = {
4490
4498
  brandId: Scalars['ID']['input'];
4491
4499
  params: CreateDivisionParams;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/graphql-gateway-types",
3
- "version": "1.87.0",
3
+ "version": "1.89.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schema.graphql CHANGED
@@ -4002,6 +4002,7 @@ type Mutation {
4002
4002
  createContentDiscoveryCampaign(contentDiscoveryId: ID!, retailerId: ID!): Campaign!
4003
4003
  createCustomFieldValue(data: CreateCustomFieldValueData!, resourceId: ID!, resourceType: CreateCustomFieldResourceType!): CustomFieldValues
4004
4004
  createDigitalAsset(params: CreateDigitalAssetParams!): DigitalAsset
4005
+ createDigitalAssetAssociables(digital_asset_ids: [ID!]!, resource_id: ID!, resource_type: String!): [DigitalAsset!]!
4005
4006
  createDivision(brandId: ID!, params: CreateDivisionParams!): Division
4006
4007
  createFacebookAccount(access_token: String!, inline_auth_facebook_page_id: ID, name: String!, params: FacebookAccountParams, permissions: FacebookAccountPermissionsInput, send_notifications: Boolean, uid: ID!, user_id: ID!): FacebookAccount
4007
4008
  createFacebookPage(facebookPage: CreateFacebookPageInput!, resourceId: ID!, resourceType: String!): FacebookPage