@promoboxx/graphql-gateway-types 1.261.0 → 1.262.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 +26 -7
- package/index.d.ts +6 -1
- package/package.json +1 -1
- package/schema.graphql +5 -1
package/graphql.schema.json
CHANGED
|
@@ -48687,13 +48687,9 @@
|
|
|
48687
48687
|
}
|
|
48688
48688
|
],
|
|
48689
48689
|
"type": {
|
|
48690
|
-
"kind": "
|
|
48691
|
-
"name":
|
|
48692
|
-
"ofType":
|
|
48693
|
-
"kind": "SCALAR",
|
|
48694
|
-
"name": "Boolean",
|
|
48695
|
-
"ofType": null
|
|
48696
|
-
}
|
|
48690
|
+
"kind": "OBJECT",
|
|
48691
|
+
"name": "SubmitSummaryOutput",
|
|
48692
|
+
"ofType": null
|
|
48697
48693
|
},
|
|
48698
48694
|
"isDeprecated": false,
|
|
48699
48695
|
"deprecationReason": null
|
|
@@ -74787,6 +74783,29 @@
|
|
|
74787
74783
|
"enumValues": null,
|
|
74788
74784
|
"possibleTypes": null
|
|
74789
74785
|
},
|
|
74786
|
+
{
|
|
74787
|
+
"kind": "OBJECT",
|
|
74788
|
+
"name": "SubmitSummaryOutput",
|
|
74789
|
+
"description": null,
|
|
74790
|
+
"fields": [
|
|
74791
|
+
{
|
|
74792
|
+
"name": "status",
|
|
74793
|
+
"description": null,
|
|
74794
|
+
"args": [],
|
|
74795
|
+
"type": {
|
|
74796
|
+
"kind": "SCALAR",
|
|
74797
|
+
"name": "String",
|
|
74798
|
+
"ofType": null
|
|
74799
|
+
},
|
|
74800
|
+
"isDeprecated": false,
|
|
74801
|
+
"deprecationReason": null
|
|
74802
|
+
}
|
|
74803
|
+
],
|
|
74804
|
+
"inputFields": null,
|
|
74805
|
+
"interfaces": [],
|
|
74806
|
+
"enumValues": null,
|
|
74807
|
+
"possibleTypes": null
|
|
74808
|
+
},
|
|
74790
74809
|
{
|
|
74791
74810
|
"kind": "OBJECT",
|
|
74792
74811
|
"name": "Subscription",
|
package/index.d.ts
CHANGED
|
@@ -4747,7 +4747,7 @@ export type Mutation = {
|
|
|
4747
4747
|
setAccountFacebookPages?: Maybe<Array<Scalars['ID']['output']>>;
|
|
4748
4748
|
signIn?: Maybe<SignInResponse>;
|
|
4749
4749
|
ssoAuth0Login: SsoLoginResponse;
|
|
4750
|
-
submitAISummarizeAsset
|
|
4750
|
+
submitAISummarizeAsset?: Maybe<SubmitSummaryOutput>;
|
|
4751
4751
|
unSubscribeLead: Scalars['String']['output'];
|
|
4752
4752
|
unpublishAndDuplicatePaidAd?: Maybe<DuplicatePaidAdResponse>;
|
|
4753
4753
|
unpublishPaidAd?: Maybe<Scalars['ID']['output']>;
|
|
@@ -9574,6 +9574,11 @@ export type SubBrandLogosFilters = {
|
|
|
9574
9574
|
state: SubBrandLogoState;
|
|
9575
9575
|
};
|
|
9576
9576
|
|
|
9577
|
+
export type SubmitSummaryOutput = {
|
|
9578
|
+
__typename?: 'SubmitSummaryOutput';
|
|
9579
|
+
status?: Maybe<Scalars['String']['output']>;
|
|
9580
|
+
};
|
|
9581
|
+
|
|
9577
9582
|
export type Subscription = {
|
|
9578
9583
|
__typename?: 'Subscription';
|
|
9579
9584
|
/** An array relationship */
|
package/package.json
CHANGED
package/schema.graphql
CHANGED
|
@@ -5064,7 +5064,7 @@ type Mutation {
|
|
|
5064
5064
|
setAccountFacebookPages(params: [SetAccountFacebookPagesInput!]!): [ID!]
|
|
5065
5065
|
signIn(email: String!, password: String!): SignInResponse
|
|
5066
5066
|
ssoAuth0Login(auth0_auth_code: String!, auth0_connection_type: String!, brand_slug: String!, redirect_uri: String!): SsoLoginResponse!
|
|
5067
|
-
submitAISummarizeAsset(url: String!):
|
|
5067
|
+
submitAISummarizeAsset(url: String!): SubmitSummaryOutput
|
|
5068
5068
|
unSubscribeLead(email_address: String!, retailer_id: ID!): String!
|
|
5069
5069
|
unpublishAndDuplicatePaidAd(brand_id: ID!, campaign_id: ID!): DuplicatePaidAdResponse
|
|
5070
5070
|
unpublishPaidAd(params: UnpublishPaidAdParams!): ID
|
|
@@ -8126,6 +8126,10 @@ input SubBrandLogosFilters {
|
|
|
8126
8126
|
state: SubBrandLogoState!
|
|
8127
8127
|
}
|
|
8128
8128
|
|
|
8129
|
+
type SubmitSummaryOutput {
|
|
8130
|
+
status: String
|
|
8131
|
+
}
|
|
8132
|
+
|
|
8129
8133
|
type Subscription {
|
|
8130
8134
|
"""An array relationship"""
|
|
8131
8135
|
address_verification_run_results(
|