@promoboxx/graphql-gateway-types 1.1126.0 → 1.1128.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 +49 -0
- package/index.d.ts +8 -0
- package/package.json +1 -1
- package/schema.graphql +1 -0
package/graphql.schema.json
CHANGED
|
@@ -56850,6 +56850,55 @@
|
|
|
56850
56850
|
"isDeprecated": false,
|
|
56851
56851
|
"deprecationReason": null
|
|
56852
56852
|
},
|
|
56853
|
+
{
|
|
56854
|
+
"name": "digitalAssetProductLineAssociation",
|
|
56855
|
+
"description": null,
|
|
56856
|
+
"args": [
|
|
56857
|
+
{
|
|
56858
|
+
"name": "digitalAssetId",
|
|
56859
|
+
"description": null,
|
|
56860
|
+
"type": {
|
|
56861
|
+
"kind": "NON_NULL",
|
|
56862
|
+
"name": null,
|
|
56863
|
+
"ofType": {
|
|
56864
|
+
"kind": "SCALAR",
|
|
56865
|
+
"name": "ID",
|
|
56866
|
+
"ofType": null
|
|
56867
|
+
}
|
|
56868
|
+
},
|
|
56869
|
+
"defaultValue": null,
|
|
56870
|
+
"isDeprecated": false,
|
|
56871
|
+
"deprecationReason": null
|
|
56872
|
+
},
|
|
56873
|
+
{
|
|
56874
|
+
"name": "productLineId",
|
|
56875
|
+
"description": null,
|
|
56876
|
+
"type": {
|
|
56877
|
+
"kind": "NON_NULL",
|
|
56878
|
+
"name": null,
|
|
56879
|
+
"ofType": {
|
|
56880
|
+
"kind": "SCALAR",
|
|
56881
|
+
"name": "ID",
|
|
56882
|
+
"ofType": null
|
|
56883
|
+
}
|
|
56884
|
+
},
|
|
56885
|
+
"defaultValue": null,
|
|
56886
|
+
"isDeprecated": false,
|
|
56887
|
+
"deprecationReason": null
|
|
56888
|
+
}
|
|
56889
|
+
],
|
|
56890
|
+
"type": {
|
|
56891
|
+
"kind": "NON_NULL",
|
|
56892
|
+
"name": null,
|
|
56893
|
+
"ofType": {
|
|
56894
|
+
"kind": "SCALAR",
|
|
56895
|
+
"name": "Boolean",
|
|
56896
|
+
"ofType": null
|
|
56897
|
+
}
|
|
56898
|
+
},
|
|
56899
|
+
"isDeprecated": false,
|
|
56900
|
+
"deprecationReason": null
|
|
56901
|
+
},
|
|
56853
56902
|
{
|
|
56854
56903
|
"name": "disableRegistrationKey",
|
|
56855
56904
|
"description": null,
|
package/index.d.ts
CHANGED
|
@@ -5572,6 +5572,7 @@ export type Mutation = {
|
|
|
5572
5572
|
/** delete single row from the table: "website_urls" */
|
|
5573
5573
|
delete_website_urls_by_pk?: Maybe<Website_Urls>;
|
|
5574
5574
|
denyAccessRequest: Scalars['ID']['output'];
|
|
5575
|
+
digitalAssetProductLineAssociation: Scalars['Boolean']['output'];
|
|
5575
5576
|
disableRegistrationKey: RegistrationKey;
|
|
5576
5577
|
disproveContentRequest: ContentRequest;
|
|
5577
5578
|
duplicateCampaign?: Maybe<Scalars['ID']['output']>;
|
|
@@ -7035,6 +7036,13 @@ export type MutationDenyAccessRequestArgs = {
|
|
|
7035
7036
|
};
|
|
7036
7037
|
|
|
7037
7038
|
|
|
7039
|
+
/** mutation root */
|
|
7040
|
+
export type MutationDigitalAssetProductLineAssociationArgs = {
|
|
7041
|
+
digitalAssetId: Scalars['ID']['input'];
|
|
7042
|
+
productLineId: Scalars['ID']['input'];
|
|
7043
|
+
};
|
|
7044
|
+
|
|
7045
|
+
|
|
7038
7046
|
/** mutation root */
|
|
7039
7047
|
export type MutationDisableRegistrationKeyArgs = {
|
|
7040
7048
|
id: Scalars['ID']['input'];
|
package/package.json
CHANGED
package/schema.graphql
CHANGED
|
@@ -5528,6 +5528,7 @@ type Mutation {
|
|
|
5528
5528
|
"""
|
|
5529
5529
|
delete_website_urls_by_pk(id: uuid!): website_urls
|
|
5530
5530
|
denyAccessRequest(id: ID!): ID!
|
|
5531
|
+
digitalAssetProductLineAssociation(digitalAssetId: ID!, productLineId: ID!): Boolean!
|
|
5531
5532
|
disableRegistrationKey(id: ID!): RegistrationKey!
|
|
5532
5533
|
disproveContentRequest(campaign_request_id: ID!): ContentRequest!
|
|
5533
5534
|
duplicateCampaign(campaignId: ID!): ID
|