@promoboxx/graphql-gateway-types 1.257.0 → 1.258.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 +0 -60
- package/index.d.ts +0 -11
- package/package.json +1 -1
- package/schema.graphql +0 -5
package/graphql.schema.json
CHANGED
|
@@ -4398,33 +4398,6 @@
|
|
|
4398
4398
|
"enumValues": null,
|
|
4399
4399
|
"possibleTypes": null
|
|
4400
4400
|
},
|
|
4401
|
-
{
|
|
4402
|
-
"kind": "INPUT_OBJECT",
|
|
4403
|
-
"name": "AiSummarizeAssetInput",
|
|
4404
|
-
"description": null,
|
|
4405
|
-
"fields": null,
|
|
4406
|
-
"inputFields": [
|
|
4407
|
-
{
|
|
4408
|
-
"name": "url",
|
|
4409
|
-
"description": null,
|
|
4410
|
-
"type": {
|
|
4411
|
-
"kind": "NON_NULL",
|
|
4412
|
-
"name": null,
|
|
4413
|
-
"ofType": {
|
|
4414
|
-
"kind": "SCALAR",
|
|
4415
|
-
"name": "String",
|
|
4416
|
-
"ofType": null
|
|
4417
|
-
}
|
|
4418
|
-
},
|
|
4419
|
-
"defaultValue": null,
|
|
4420
|
-
"isDeprecated": false,
|
|
4421
|
-
"deprecationReason": null
|
|
4422
|
-
}
|
|
4423
|
-
],
|
|
4424
|
-
"interfaces": null,
|
|
4425
|
-
"enumValues": null,
|
|
4426
|
-
"possibleTypes": null
|
|
4427
|
-
},
|
|
4428
4401
|
{
|
|
4429
4402
|
"kind": "OBJECT",
|
|
4430
4403
|
"name": "Alert",
|
|
@@ -40812,39 +40785,6 @@
|
|
|
40812
40785
|
"isDeprecated": false,
|
|
40813
40786
|
"deprecationReason": null
|
|
40814
40787
|
},
|
|
40815
|
-
{
|
|
40816
|
-
"name": "aiSummarizeAsset",
|
|
40817
|
-
"description": null,
|
|
40818
|
-
"args": [
|
|
40819
|
-
{
|
|
40820
|
-
"name": "arg1",
|
|
40821
|
-
"description": null,
|
|
40822
|
-
"type": {
|
|
40823
|
-
"kind": "NON_NULL",
|
|
40824
|
-
"name": null,
|
|
40825
|
-
"ofType": {
|
|
40826
|
-
"kind": "INPUT_OBJECT",
|
|
40827
|
-
"name": "AiSummarizeAssetInput",
|
|
40828
|
-
"ofType": null
|
|
40829
|
-
}
|
|
40830
|
-
},
|
|
40831
|
-
"defaultValue": null,
|
|
40832
|
-
"isDeprecated": false,
|
|
40833
|
-
"deprecationReason": null
|
|
40834
|
-
}
|
|
40835
|
-
],
|
|
40836
|
-
"type": {
|
|
40837
|
-
"kind": "NON_NULL",
|
|
40838
|
-
"name": null,
|
|
40839
|
-
"ofType": {
|
|
40840
|
-
"kind": "SCALAR",
|
|
40841
|
-
"name": "Boolean",
|
|
40842
|
-
"ofType": null
|
|
40843
|
-
}
|
|
40844
|
-
},
|
|
40845
|
-
"isDeprecated": false,
|
|
40846
|
-
"deprecationReason": null
|
|
40847
|
-
},
|
|
40848
40788
|
{
|
|
40849
40789
|
"name": "approveContentRequest",
|
|
40850
40790
|
"description": null,
|
package/index.d.ts
CHANGED
|
@@ -505,10 +505,6 @@ export type AggregateStats = {
|
|
|
505
505
|
shares?: Maybe<Scalars['Int']['output']>;
|
|
506
506
|
};
|
|
507
507
|
|
|
508
|
-
export type AiSummarizeAssetInput = {
|
|
509
|
-
url: Scalars['String']['input'];
|
|
510
|
-
};
|
|
511
|
-
|
|
512
508
|
export type Alert = {
|
|
513
509
|
__typename?: 'Alert';
|
|
514
510
|
alert_type?: Maybe<AlertType>;
|
|
@@ -4473,7 +4469,6 @@ export type Mutation = {
|
|
|
4473
4469
|
addLogoToAdAccount: AdAccount;
|
|
4474
4470
|
addRetailerToRetailerAccount: AddRetailerToRetailerAccountResponse;
|
|
4475
4471
|
adsvcUpdateAutomationForFBPage: AdsvcAutomation;
|
|
4476
|
-
aiSummarizeAsset: Scalars['Boolean']['output'];
|
|
4477
4472
|
approveContentRequest: ContentRequest;
|
|
4478
4473
|
batchAcceptBrandRequests: Scalars['String']['output'];
|
|
4479
4474
|
batchCreateBrandRequests: Array<BrandRequest>;
|
|
@@ -4961,12 +4956,6 @@ export type MutationAdsvcUpdateAutomationForFbPageArgs = {
|
|
|
4961
4956
|
};
|
|
4962
4957
|
|
|
4963
4958
|
|
|
4964
|
-
/** mutation root */
|
|
4965
|
-
export type MutationAiSummarizeAssetArgs = {
|
|
4966
|
-
arg1: AiSummarizeAssetInput;
|
|
4967
|
-
};
|
|
4968
|
-
|
|
4969
|
-
|
|
4970
4959
|
/** mutation root */
|
|
4971
4960
|
export type MutationApproveContentRequestArgs = {
|
|
4972
4961
|
campaign_request_id: Scalars['ID']['input'];
|
package/package.json
CHANGED
package/schema.graphql
CHANGED
|
@@ -477,10 +477,6 @@ type AggregateStats {
|
|
|
477
477
|
shares: Int
|
|
478
478
|
}
|
|
479
479
|
|
|
480
|
-
input AiSummarizeAssetInput {
|
|
481
|
-
url: String!
|
|
482
|
-
}
|
|
483
|
-
|
|
484
480
|
type Alert {
|
|
485
481
|
alert_type: AlertType
|
|
486
482
|
alertable_id: ID!
|
|
@@ -4324,7 +4320,6 @@ type Mutation {
|
|
|
4324
4320
|
addLogoToAdAccount(params: AddLogoToAdAccountParams!): AdAccount!
|
|
4325
4321
|
addRetailerToRetailerAccount(params: AddRetailerToRetailerAccountParams!): AddRetailerToRetailerAccountResponse!
|
|
4326
4322
|
adsvcUpdateAutomationForFBPage(facebookPageID: ID!, retailerID: ID!, state: String!): adsvcAutomation!
|
|
4327
|
-
aiSummarizeAsset(arg1: AiSummarizeAssetInput!): Boolean!
|
|
4328
4323
|
approveContentRequest(campaign_request_id: ID!): ContentRequest!
|
|
4329
4324
|
batchAcceptBrandRequests(resource_id: ID!, resource_type: String!): String!
|
|
4330
4325
|
batchCreateBrandRequests(brand_ids: [ID!]!, brand_request: CreateBrandRequestBrandRequest!, fields: [String!]): [BrandRequest!]!
|