@promoboxx/graphql-gateway-types 1.698.0 → 1.700.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 +36 -0
- package/index.d.ts +3 -0
- package/package.json +1 -1
- package/schema.graphql +3 -0
package/graphql.schema.json
CHANGED
|
@@ -12283,6 +12283,18 @@
|
|
|
12283
12283
|
},
|
|
12284
12284
|
"isDeprecated": false,
|
|
12285
12285
|
"deprecationReason": null
|
|
12286
|
+
},
|
|
12287
|
+
{
|
|
12288
|
+
"name": "welcome",
|
|
12289
|
+
"description": null,
|
|
12290
|
+
"args": [],
|
|
12291
|
+
"type": {
|
|
12292
|
+
"kind": "SCALAR",
|
|
12293
|
+
"name": "Boolean",
|
|
12294
|
+
"ofType": null
|
|
12295
|
+
},
|
|
12296
|
+
"isDeprecated": false,
|
|
12297
|
+
"deprecationReason": null
|
|
12286
12298
|
}
|
|
12287
12299
|
],
|
|
12288
12300
|
"inputFields": null,
|
|
@@ -12755,6 +12767,18 @@
|
|
|
12755
12767
|
"defaultValue": null,
|
|
12756
12768
|
"isDeprecated": false,
|
|
12757
12769
|
"deprecationReason": null
|
|
12770
|
+
},
|
|
12771
|
+
{
|
|
12772
|
+
"name": "welcome",
|
|
12773
|
+
"description": null,
|
|
12774
|
+
"type": {
|
|
12775
|
+
"kind": "SCALAR",
|
|
12776
|
+
"name": "Boolean",
|
|
12777
|
+
"ofType": null
|
|
12778
|
+
},
|
|
12779
|
+
"defaultValue": null,
|
|
12780
|
+
"isDeprecated": false,
|
|
12781
|
+
"deprecationReason": null
|
|
12758
12782
|
}
|
|
12759
12783
|
],
|
|
12760
12784
|
"interfaces": null,
|
|
@@ -18191,6 +18215,18 @@
|
|
|
18191
18215
|
"defaultValue": null,
|
|
18192
18216
|
"isDeprecated": false,
|
|
18193
18217
|
"deprecationReason": null
|
|
18218
|
+
},
|
|
18219
|
+
{
|
|
18220
|
+
"name": "welcome",
|
|
18221
|
+
"description": null,
|
|
18222
|
+
"type": {
|
|
18223
|
+
"kind": "SCALAR",
|
|
18224
|
+
"name": "Boolean",
|
|
18225
|
+
"ofType": null
|
|
18226
|
+
},
|
|
18227
|
+
"defaultValue": null,
|
|
18228
|
+
"isDeprecated": false,
|
|
18229
|
+
"deprecationReason": null
|
|
18194
18230
|
}
|
|
18195
18231
|
],
|
|
18196
18232
|
"interfaces": null,
|
package/index.d.ts
CHANGED
|
@@ -1305,6 +1305,7 @@ export type Campaign = {
|
|
|
1305
1305
|
updated_at?: Maybe<Scalars['String']['output']>;
|
|
1306
1306
|
updated_by_id?: Maybe<Scalars['ID']['output']>;
|
|
1307
1307
|
uuid?: Maybe<Scalars['String']['output']>;
|
|
1308
|
+
welcome?: Maybe<Scalars['Boolean']['output']>;
|
|
1308
1309
|
};
|
|
1309
1310
|
|
|
1310
1311
|
|
|
@@ -1378,6 +1379,7 @@ export type CampaignFilterParams = {
|
|
|
1378
1379
|
state?: InputMaybe<Array<CampaignStateFilter>>;
|
|
1379
1380
|
tag?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1380
1381
|
type?: InputMaybe<Array<CampaignTypeFilter>>;
|
|
1382
|
+
welcome?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1381
1383
|
};
|
|
1382
1384
|
|
|
1383
1385
|
export type CampaignInvitation = {
|
|
@@ -1957,6 +1959,7 @@ export type CreateCampaignDataCampaign = {
|
|
|
1957
1959
|
survey_enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1958
1960
|
tag_list?: InputMaybe<Array<Scalars['String']['input']>>;
|
|
1959
1961
|
tiktok_enabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1962
|
+
welcome?: InputMaybe<Scalars['Boolean']['input']>;
|
|
1960
1963
|
};
|
|
1961
1964
|
|
|
1962
1965
|
export type CreateCampaignInvitation = {
|
package/package.json
CHANGED
package/schema.graphql
CHANGED
|
@@ -1262,6 +1262,7 @@ type Campaign {
|
|
|
1262
1262
|
updated_at: String
|
|
1263
1263
|
updated_by_id: ID
|
|
1264
1264
|
uuid: String
|
|
1265
|
+
welcome: Boolean
|
|
1265
1266
|
}
|
|
1266
1267
|
|
|
1267
1268
|
type CampaignChannel {
|
|
@@ -1303,6 +1304,7 @@ input CampaignFilterParams {
|
|
|
1303
1304
|
state: [CampaignStateFilter!]
|
|
1304
1305
|
tag: [String!]
|
|
1305
1306
|
type: [CampaignTypeFilter!]
|
|
1307
|
+
welcome: Boolean
|
|
1306
1308
|
}
|
|
1307
1309
|
|
|
1308
1310
|
type CampaignInvitation {
|
|
@@ -1859,6 +1861,7 @@ input CreateCampaignDataCampaign {
|
|
|
1859
1861
|
survey_enabled: Boolean
|
|
1860
1862
|
tag_list: [String!]
|
|
1861
1863
|
tiktok_enabled: Boolean
|
|
1864
|
+
welcome: Boolean
|
|
1862
1865
|
}
|
|
1863
1866
|
|
|
1864
1867
|
input CreateCampaignInvitation {
|