@promoboxx/graphql-gateway-types 1.347.0 → 1.348.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 +40 -0
- package/index.d.ts +2 -0
- package/package.json +1 -1
- package/schema.graphql +2 -2
package/graphql.schema.json
CHANGED
|
@@ -43342,6 +43342,26 @@
|
|
|
43342
43342
|
"isDeprecated": false,
|
|
43343
43343
|
"deprecationReason": null
|
|
43344
43344
|
},
|
|
43345
|
+
{
|
|
43346
|
+
"name": "fields",
|
|
43347
|
+
"description": null,
|
|
43348
|
+
"type": {
|
|
43349
|
+
"kind": "LIST",
|
|
43350
|
+
"name": null,
|
|
43351
|
+
"ofType": {
|
|
43352
|
+
"kind": "NON_NULL",
|
|
43353
|
+
"name": null,
|
|
43354
|
+
"ofType": {
|
|
43355
|
+
"kind": "SCALAR",
|
|
43356
|
+
"name": "String",
|
|
43357
|
+
"ofType": null
|
|
43358
|
+
}
|
|
43359
|
+
}
|
|
43360
|
+
},
|
|
43361
|
+
"defaultValue": null,
|
|
43362
|
+
"isDeprecated": false,
|
|
43363
|
+
"deprecationReason": null
|
|
43364
|
+
},
|
|
43345
43365
|
{
|
|
43346
43366
|
"name": "instagram_share",
|
|
43347
43367
|
"description": null,
|
|
@@ -51401,6 +51421,26 @@
|
|
|
51401
51421
|
"isDeprecated": false,
|
|
51402
51422
|
"deprecationReason": null
|
|
51403
51423
|
},
|
|
51424
|
+
{
|
|
51425
|
+
"name": "fields",
|
|
51426
|
+
"description": null,
|
|
51427
|
+
"type": {
|
|
51428
|
+
"kind": "LIST",
|
|
51429
|
+
"name": null,
|
|
51430
|
+
"ofType": {
|
|
51431
|
+
"kind": "NON_NULL",
|
|
51432
|
+
"name": null,
|
|
51433
|
+
"ofType": {
|
|
51434
|
+
"kind": "SCALAR",
|
|
51435
|
+
"name": "String",
|
|
51436
|
+
"ofType": null
|
|
51437
|
+
}
|
|
51438
|
+
}
|
|
51439
|
+
},
|
|
51440
|
+
"defaultValue": null,
|
|
51441
|
+
"isDeprecated": false,
|
|
51442
|
+
"deprecationReason": null
|
|
51443
|
+
},
|
|
51404
51444
|
{
|
|
51405
51445
|
"name": "id",
|
|
51406
51446
|
"description": null,
|
package/index.d.ts
CHANGED
|
@@ -5370,6 +5370,7 @@ export type MutationCreateShareArgs = {
|
|
|
5370
5370
|
email_share?: InputMaybe<CreateShareEmailShare>;
|
|
5371
5371
|
embed_share?: InputMaybe<CreateShareEmbedShare>;
|
|
5372
5372
|
facebook_share?: InputMaybe<CreateShareFacebookShare>;
|
|
5373
|
+
fields?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
5373
5374
|
instagram_share?: InputMaybe<CreateShareInstagramShare>;
|
|
5374
5375
|
resource_id: Scalars['ID']['input'];
|
|
5375
5376
|
resource_type: Scalars['String']['input'];
|
|
@@ -6687,6 +6688,7 @@ export type MutationUpdateShareArgs = {
|
|
|
6687
6688
|
email_share?: InputMaybe<CreateShareEmailShare>;
|
|
6688
6689
|
embed_share?: InputMaybe<CreateShareEmbedShare>;
|
|
6689
6690
|
facebook_share?: InputMaybe<CreateShareFacebookShare>;
|
|
6691
|
+
fields?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
6690
6692
|
id: Scalars['ID']['input'];
|
|
6691
6693
|
instagram_share?: InputMaybe<CreateShareInstagramShare>;
|
|
6692
6694
|
shareType: Scalars['String']['input'];
|
package/package.json
CHANGED
package/schema.graphql
CHANGED
|
@@ -4391,7 +4391,7 @@ type Mutation {
|
|
|
4391
4391
|
createPermission(permission: CreatePermissionInput!, user_id: ID!): Permission!
|
|
4392
4392
|
createPlatformAccessRequest(platform_access_request: CreatePlatformAccessRequestParams!): PlatformAccessRequest
|
|
4393
4393
|
createRetailer(params: CreateRetailerParams!): CreateRetailerResponse!
|
|
4394
|
-
createShare(asset_share: CreateShareAssetShare, email_share: CreateShareEmailShare, embed_share: CreateShareEmbedShare, facebook_share: CreateShareFacebookShare, instagram_share: CreateShareInstagramShare, resource_id: ID!, resource_type: String!, shareType: String!, twitter_share: CreateShareTwitterShare): Share!
|
|
4394
|
+
createShare(asset_share: CreateShareAssetShare, email_share: CreateShareEmailShare, embed_share: CreateShareEmbedShare, facebook_share: CreateShareFacebookShare, fields: [String!], instagram_share: CreateShareInstagramShare, resource_id: ID!, resource_type: String!, shareType: String!, twitter_share: CreateShareTwitterShare): Share!
|
|
4395
4395
|
createShareSettingBulk(campaign_id: ID!, params: CreateShareSettingBulkParams!): [ShareSetting!]!
|
|
4396
4396
|
createShareSettingCarousel(campaign_id: ID!, params: CreateShareSettingCarouselParams!): ShareSetting!
|
|
4397
4397
|
createSsoConnection(sso_connection: SsoConnectionInput!, user_id: ID!): SsoConnection!
|
|
@@ -5266,7 +5266,7 @@ type Mutation {
|
|
|
5266
5266
|
updateRetailer(id: ID!, retailer: UpdateRetailerParams!): Retailer!
|
|
5267
5267
|
updateRetailerAccount(args: UpdateRetailerAccountArgs, id: ID!, params: UpdateRetailerAccountParams!): RetailerAccount!
|
|
5268
5268
|
updateRetailers(ids: [ID!]!, retailer: UpdateRetailerParams!): [Retailer!]!
|
|
5269
|
-
updateShare(asset_share: CreateShareAssetShare, email_share: CreateShareEmailShare, embed_share: CreateShareEmbedShare, facebook_share: CreateShareFacebookShare, id: ID!, instagram_share: CreateShareInstagramShare, shareType: String!, twitter_share: CreateShareTwitterShare): Share!
|
|
5269
|
+
updateShare(asset_share: CreateShareAssetShare, email_share: CreateShareEmailShare, embed_share: CreateShareEmbedShare, facebook_share: CreateShareFacebookShare, fields: [String!], id: ID!, instagram_share: CreateShareInstagramShare, shareType: String!, twitter_share: CreateShareTwitterShare): Share!
|
|
5270
5270
|
updateSsoConnection(id: ID!, sso_connection: SsoConnectionInput!, user_id: ID!): SsoConnection!
|
|
5271
5271
|
updateUser(user: UpdateUserInput!): UpdateUserResponse!
|
|
5272
5272
|
|