@promoboxx/graphql-gateway-types 1.262.0 → 1.263.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 +7 -26
- package/index.d.ts +1 -6
- package/package.json +1 -1
- package/schema.graphql +1 -5
package/graphql.schema.json
CHANGED
|
@@ -48687,9 +48687,13 @@
|
|
|
48687
48687
|
}
|
|
48688
48688
|
],
|
|
48689
48689
|
"type": {
|
|
48690
|
-
"kind": "
|
|
48691
|
-
"name":
|
|
48692
|
-
"ofType":
|
|
48690
|
+
"kind": "NON_NULL",
|
|
48691
|
+
"name": null,
|
|
48692
|
+
"ofType": {
|
|
48693
|
+
"kind": "SCALAR",
|
|
48694
|
+
"name": "String",
|
|
48695
|
+
"ofType": null
|
|
48696
|
+
}
|
|
48693
48697
|
},
|
|
48694
48698
|
"isDeprecated": false,
|
|
48695
48699
|
"deprecationReason": null
|
|
@@ -74783,29 +74787,6 @@
|
|
|
74783
74787
|
"enumValues": null,
|
|
74784
74788
|
"possibleTypes": null
|
|
74785
74789
|
},
|
|
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
|
-
},
|
|
74809
74790
|
{
|
|
74810
74791
|
"kind": "OBJECT",
|
|
74811
74792
|
"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: Scalars['String']['output'];
|
|
4751
4751
|
unSubscribeLead: Scalars['String']['output'];
|
|
4752
4752
|
unpublishAndDuplicatePaidAd?: Maybe<DuplicatePaidAdResponse>;
|
|
4753
4753
|
unpublishPaidAd?: Maybe<Scalars['ID']['output']>;
|
|
@@ -9574,11 +9574,6 @@ 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
|
-
|
|
9582
9577
|
export type Subscription = {
|
|
9583
9578
|
__typename?: 'Subscription';
|
|
9584
9579
|
/** 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!): String!
|
|
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,10 +8126,6 @@ input SubBrandLogosFilters {
|
|
|
8126
8126
|
state: SubBrandLogoState!
|
|
8127
8127
|
}
|
|
8128
8128
|
|
|
8129
|
-
type SubmitSummaryOutput {
|
|
8130
|
-
status: String
|
|
8131
|
-
}
|
|
8132
|
-
|
|
8133
8129
|
type Subscription {
|
|
8134
8130
|
"""An array relationship"""
|
|
8135
8131
|
address_verification_run_results(
|