@promoboxx/graphql-gateway-types 1.166.0 → 1.167.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 +61 -0
- package/index.d.ts +9 -0
- package/package.json +1 -1
- package/schema.graphql +2 -0
package/graphql.schema.json
CHANGED
|
@@ -42329,6 +42329,55 @@
|
|
|
42329
42329
|
"isDeprecated": false,
|
|
42330
42330
|
"deprecationReason": null
|
|
42331
42331
|
},
|
|
42332
|
+
{
|
|
42333
|
+
"name": "createSsoConnectionFromUser",
|
|
42334
|
+
"description": null,
|
|
42335
|
+
"args": [
|
|
42336
|
+
{
|
|
42337
|
+
"name": "sso_connection",
|
|
42338
|
+
"description": null,
|
|
42339
|
+
"type": {
|
|
42340
|
+
"kind": "NON_NULL",
|
|
42341
|
+
"name": null,
|
|
42342
|
+
"ofType": {
|
|
42343
|
+
"kind": "INPUT_OBJECT",
|
|
42344
|
+
"name": "SsoConnectionInput",
|
|
42345
|
+
"ofType": null
|
|
42346
|
+
}
|
|
42347
|
+
},
|
|
42348
|
+
"defaultValue": null,
|
|
42349
|
+
"isDeprecated": false,
|
|
42350
|
+
"deprecationReason": null
|
|
42351
|
+
},
|
|
42352
|
+
{
|
|
42353
|
+
"name": "user_id",
|
|
42354
|
+
"description": null,
|
|
42355
|
+
"type": {
|
|
42356
|
+
"kind": "NON_NULL",
|
|
42357
|
+
"name": null,
|
|
42358
|
+
"ofType": {
|
|
42359
|
+
"kind": "SCALAR",
|
|
42360
|
+
"name": "ID",
|
|
42361
|
+
"ofType": null
|
|
42362
|
+
}
|
|
42363
|
+
},
|
|
42364
|
+
"defaultValue": null,
|
|
42365
|
+
"isDeprecated": false,
|
|
42366
|
+
"deprecationReason": null
|
|
42367
|
+
}
|
|
42368
|
+
],
|
|
42369
|
+
"type": {
|
|
42370
|
+
"kind": "NON_NULL",
|
|
42371
|
+
"name": null,
|
|
42372
|
+
"ofType": {
|
|
42373
|
+
"kind": "OBJECT",
|
|
42374
|
+
"name": "SsoConnection",
|
|
42375
|
+
"ofType": null
|
|
42376
|
+
}
|
|
42377
|
+
},
|
|
42378
|
+
"isDeprecated": false,
|
|
42379
|
+
"deprecationReason": null
|
|
42380
|
+
},
|
|
42332
42381
|
{
|
|
42333
42382
|
"name": "createSupportEmail",
|
|
42334
42383
|
"description": null,
|
|
@@ -71828,6 +71877,18 @@
|
|
|
71828
71877
|
},
|
|
71829
71878
|
"isDeprecated": false,
|
|
71830
71879
|
"deprecationReason": null
|
|
71880
|
+
},
|
|
71881
|
+
{
|
|
71882
|
+
"name": "sso_connection",
|
|
71883
|
+
"description": null,
|
|
71884
|
+
"args": [],
|
|
71885
|
+
"type": {
|
|
71886
|
+
"kind": "OBJECT",
|
|
71887
|
+
"name": "SsoConnection",
|
|
71888
|
+
"ofType": null
|
|
71889
|
+
},
|
|
71890
|
+
"isDeprecated": false,
|
|
71891
|
+
"deprecationReason": null
|
|
71831
71892
|
}
|
|
71832
71893
|
],
|
|
71833
71894
|
"inputFields": null,
|
package/index.d.ts
CHANGED
|
@@ -4443,6 +4443,7 @@ export type Mutation = {
|
|
|
4443
4443
|
createShareSettingBulk: Array<ShareSetting>;
|
|
4444
4444
|
createShareSettingCarousel: ShareSetting;
|
|
4445
4445
|
createSsoConnection: SsoConnection;
|
|
4446
|
+
createSsoConnectionFromUser: SsoConnection;
|
|
4446
4447
|
createSupportEmail: CreateSupportEmailResponse;
|
|
4447
4448
|
createTwitterAccount: TwitterAccount;
|
|
4448
4449
|
createUserBrandRejection: UserBrandRejection;
|
|
@@ -5209,6 +5210,13 @@ export type MutationCreateSsoConnectionArgs = {
|
|
|
5209
5210
|
};
|
|
5210
5211
|
|
|
5211
5212
|
|
|
5213
|
+
/** mutation root */
|
|
5214
|
+
export type MutationCreateSsoConnectionFromUserArgs = {
|
|
5215
|
+
sso_connection: SsoConnectionInput;
|
|
5216
|
+
user_id: Scalars['ID']['input'];
|
|
5217
|
+
};
|
|
5218
|
+
|
|
5219
|
+
|
|
5212
5220
|
/** mutation root */
|
|
5213
5221
|
export type MutationCreateSupportEmailArgs = {
|
|
5214
5222
|
data: CreateSupportEmailRequest;
|
|
@@ -9255,6 +9263,7 @@ export type SsoConnectionInput = {
|
|
|
9255
9263
|
export type SsoLoginResponse = {
|
|
9256
9264
|
__typename?: 'SsoLoginResponse';
|
|
9257
9265
|
jwt: Scalars['String']['output'];
|
|
9266
|
+
sso_connection?: Maybe<SsoConnection>;
|
|
9258
9267
|
};
|
|
9259
9268
|
|
|
9260
9269
|
export type Stats = {
|
package/package.json
CHANGED
package/schema.graphql
CHANGED
|
@@ -4292,6 +4292,7 @@ type Mutation {
|
|
|
4292
4292
|
createShareSettingBulk(campaign_id: ID!, params: CreateShareSettingBulkParams!): [ShareSetting!]!
|
|
4293
4293
|
createShareSettingCarousel(campaign_id: ID!, params: CreateShareSettingCarouselParams!): ShareSetting!
|
|
4294
4294
|
createSsoConnection(sso_connection: SsoConnectionInput!, user_id: ID!): SsoConnection!
|
|
4295
|
+
createSsoConnectionFromUser(sso_connection: SsoConnectionInput!, user_id: ID!): SsoConnection!
|
|
4295
4296
|
createSupportEmail(data: CreateSupportEmailRequest!): CreateSupportEmailResponse!
|
|
4296
4297
|
createTwitterAccount(resourceId: ID!, resourceType: String!, twitterAccount: CreateTwitterAccountInput!): TwitterAccount!
|
|
4297
4298
|
createUserBrandRejection(user_brand_rejection: UserBrandRejectionInput!): UserBrandRejection!
|
|
@@ -7839,6 +7840,7 @@ input SsoConnectionInput {
|
|
|
7839
7840
|
|
|
7840
7841
|
type SsoLoginResponse {
|
|
7841
7842
|
jwt: String!
|
|
7843
|
+
sso_connection: SsoConnection
|
|
7842
7844
|
}
|
|
7843
7845
|
|
|
7844
7846
|
type Stats {
|