@promoboxx/graphql-gateway-types 1.255.0 → 1.257.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.
@@ -4425,65 +4425,6 @@
4425
4425
  "enumValues": null,
4426
4426
  "possibleTypes": null
4427
4427
  },
4428
- {
4429
- "kind": "OBJECT",
4430
- "name": "AiSummarizeAssetOutput",
4431
- "description": null,
4432
- "fields": [
4433
- {
4434
- "name": "input_url",
4435
- "description": null,
4436
- "args": [],
4437
- "type": {
4438
- "kind": "NON_NULL",
4439
- "name": null,
4440
- "ofType": {
4441
- "kind": "SCALAR",
4442
- "name": "String",
4443
- "ofType": null
4444
- }
4445
- },
4446
- "isDeprecated": false,
4447
- "deprecationReason": null
4448
- },
4449
- {
4450
- "name": "prompt",
4451
- "description": null,
4452
- "args": [],
4453
- "type": {
4454
- "kind": "NON_NULL",
4455
- "name": null,
4456
- "ofType": {
4457
- "kind": "SCALAR",
4458
- "name": "String",
4459
- "ofType": null
4460
- }
4461
- },
4462
- "isDeprecated": false,
4463
- "deprecationReason": null
4464
- },
4465
- {
4466
- "name": "summary",
4467
- "description": null,
4468
- "args": [],
4469
- "type": {
4470
- "kind": "NON_NULL",
4471
- "name": null,
4472
- "ofType": {
4473
- "kind": "SCALAR",
4474
- "name": "String",
4475
- "ofType": null
4476
- }
4477
- },
4478
- "isDeprecated": false,
4479
- "deprecationReason": null
4480
- }
4481
- ],
4482
- "inputFields": null,
4483
- "interfaces": [],
4484
- "enumValues": null,
4485
- "possibleTypes": null
4486
- },
4487
4428
  {
4488
4429
  "kind": "OBJECT",
4489
4430
  "name": "Alert",
@@ -40871,6 +40812,39 @@
40871
40812
  "isDeprecated": false,
40872
40813
  "deprecationReason": null
40873
40814
  },
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
+ },
40874
40848
  {
40875
40849
  "name": "approveContentRequest",
40876
40850
  "description": null,
@@ -56190,35 +56164,6 @@
56190
56164
  "isDeprecated": false,
56191
56165
  "deprecationReason": null
56192
56166
  },
56193
- {
56194
- "name": "aiSummarizeAsset",
56195
- "description": null,
56196
- "args": [
56197
- {
56198
- "name": "arg1",
56199
- "description": null,
56200
- "type": {
56201
- "kind": "NON_NULL",
56202
- "name": null,
56203
- "ofType": {
56204
- "kind": "INPUT_OBJECT",
56205
- "name": "AiSummarizeAssetInput",
56206
- "ofType": null
56207
- }
56208
- },
56209
- "defaultValue": null,
56210
- "isDeprecated": false,
56211
- "deprecationReason": null
56212
- }
56213
- ],
56214
- "type": {
56215
- "kind": "OBJECT",
56216
- "name": "AiSummarizeAssetOutput",
56217
- "ofType": null
56218
- },
56219
- "isDeprecated": false,
56220
- "deprecationReason": null
56221
- },
56222
56167
  {
56223
56168
  "name": "apify_actor_run_results",
56224
56169
  "description": "fetch data from the table: \"apify_actor_run_results\"",
package/index.d.ts CHANGED
@@ -509,13 +509,6 @@ export type AiSummarizeAssetInput = {
509
509
  url: Scalars['String']['input'];
510
510
  };
511
511
 
512
- export type AiSummarizeAssetOutput = {
513
- __typename?: 'AiSummarizeAssetOutput';
514
- input_url: Scalars['String']['output'];
515
- prompt: Scalars['String']['output'];
516
- summary: Scalars['String']['output'];
517
- };
518
-
519
512
  export type Alert = {
520
513
  __typename?: 'Alert';
521
514
  alert_type?: Maybe<AlertType>;
@@ -4480,6 +4473,7 @@ export type Mutation = {
4480
4473
  addLogoToAdAccount: AdAccount;
4481
4474
  addRetailerToRetailerAccount: AddRetailerToRetailerAccountResponse;
4482
4475
  adsvcUpdateAutomationForFBPage: AdsvcAutomation;
4476
+ aiSummarizeAsset: Scalars['Boolean']['output'];
4483
4477
  approveContentRequest: ContentRequest;
4484
4478
  batchAcceptBrandRequests: Scalars['String']['output'];
4485
4479
  batchCreateBrandRequests: Array<BrandRequest>;
@@ -4967,6 +4961,12 @@ export type MutationAdsvcUpdateAutomationForFbPageArgs = {
4967
4961
  };
4968
4962
 
4969
4963
 
4964
+ /** mutation root */
4965
+ export type MutationAiSummarizeAssetArgs = {
4966
+ arg1: AiSummarizeAssetInput;
4967
+ };
4968
+
4969
+
4970
4970
  /** mutation root */
4971
4971
  export type MutationApproveContentRequestArgs = {
4972
4972
  campaign_request_id: Scalars['ID']['input'];
@@ -7226,7 +7226,6 @@ export type Query = {
7226
7226
  address_verification_run_results_by_pk?: Maybe<Address_Verification_Run_Results>;
7227
7227
  adminGetSignedDashboard?: Maybe<SignedDashboardResponse>;
7228
7228
  adsvcGetRetailerCampaign: AdsvcGetRetailerCampaignResponse;
7229
- aiSummarizeAsset?: Maybe<AiSummarizeAssetOutput>;
7230
7229
  /** fetch data from the table: "apify_actor_run_results" */
7231
7230
  apify_actor_run_results: Array<Apify_Actor_Run_Results>;
7232
7231
  /** fetch aggregated fields from the table: "apify_actor_run_results" */
@@ -7525,11 +7524,6 @@ export type QueryAdsvcGetRetailerCampaignArgs = {
7525
7524
  };
7526
7525
 
7527
7526
 
7528
- export type QueryAiSummarizeAssetArgs = {
7529
- arg1: AiSummarizeAssetInput;
7530
- };
7531
-
7532
-
7533
7527
  export type QueryApify_Actor_Run_ResultsArgs = {
7534
7528
  distinct_on?: InputMaybe<Array<Apify_Actor_Run_Results_Select_Column>>;
7535
7529
  limit?: InputMaybe<Scalars['Int']['input']>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/graphql-gateway-types",
3
- "version": "1.255.0",
3
+ "version": "1.257.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schema.graphql CHANGED
@@ -481,12 +481,6 @@ input AiSummarizeAssetInput {
481
481
  url: String!
482
482
  }
483
483
 
484
- type AiSummarizeAssetOutput {
485
- input_url: String!
486
- prompt: String!
487
- summary: String!
488
- }
489
-
490
484
  type Alert {
491
485
  alert_type: AlertType
492
486
  alertable_id: ID!
@@ -4330,6 +4324,7 @@ type Mutation {
4330
4324
  addLogoToAdAccount(params: AddLogoToAdAccountParams!): AdAccount!
4331
4325
  addRetailerToRetailerAccount(params: AddRetailerToRetailerAccountParams!): AddRetailerToRetailerAccountResponse!
4332
4326
  adsvcUpdateAutomationForFBPage(facebookPageID: ID!, retailerID: ID!, state: String!): adsvcAutomation!
4327
+ aiSummarizeAsset(arg1: AiSummarizeAssetInput!): Boolean!
4333
4328
  approveContentRequest(campaign_request_id: ID!): ContentRequest!
4334
4329
  batchAcceptBrandRequests(resource_id: ID!, resource_type: String!): String!
4335
4330
  batchCreateBrandRequests(brand_ids: [ID!]!, brand_request: CreateBrandRequestBrandRequest!, fields: [String!]): [BrandRequest!]!
@@ -6319,7 +6314,6 @@ type Query {
6319
6314
  address_verification_run_results_by_pk(id: uuid!): address_verification_run_results
6320
6315
  adminGetSignedDashboard(req: AdminGetSignedDashboardRequest!): SignedDashboardResponse
6321
6316
  adsvcGetRetailerCampaign(id: ID!, retailerID: Int!): adsvcGetRetailerCampaignResponse!
6322
- aiSummarizeAsset(arg1: AiSummarizeAssetInput!): AiSummarizeAssetOutput
6323
6317
 
6324
6318
  """
6325
6319
  fetch data from the table: "apify_actor_run_results"