@closerplatform/spinner-openapi 0.12.1128 → 0.12.1130
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/dist/api.d.ts +28 -4
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -617,6 +617,12 @@ export interface AgentProfile {
|
|
|
617
617
|
* @memberof AgentProfile
|
|
618
618
|
*/
|
|
619
619
|
id: string;
|
|
620
|
+
/**
|
|
621
|
+
*
|
|
622
|
+
* @type {string}
|
|
623
|
+
* @memberof AgentProfile
|
|
624
|
+
*/
|
|
625
|
+
orgId: string;
|
|
620
626
|
/**
|
|
621
627
|
*
|
|
622
628
|
* @type {string}
|
|
@@ -653,6 +659,12 @@ export interface AgentProfile {
|
|
|
653
659
|
* @memberof AgentProfile
|
|
654
660
|
*/
|
|
655
661
|
pendingEmail?: string;
|
|
662
|
+
/**
|
|
663
|
+
*
|
|
664
|
+
* @type {Phone}
|
|
665
|
+
* @memberof AgentProfile
|
|
666
|
+
*/
|
|
667
|
+
phone?: Phone;
|
|
656
668
|
/**
|
|
657
669
|
*
|
|
658
670
|
* @type {number}
|
|
@@ -671,6 +683,12 @@ export interface AgentProfile {
|
|
|
671
683
|
* @memberof AgentProfile
|
|
672
684
|
*/
|
|
673
685
|
autoAssignedLimit?: number;
|
|
686
|
+
/**
|
|
687
|
+
*
|
|
688
|
+
* @type {number}
|
|
689
|
+
* @memberof AgentProfile
|
|
690
|
+
*/
|
|
691
|
+
rating?: number;
|
|
674
692
|
/**
|
|
675
693
|
*
|
|
676
694
|
* @type {string}
|
|
@@ -4338,7 +4356,13 @@ export interface OauthConfigCreateForm {
|
|
|
4338
4356
|
* @type {boolean}
|
|
4339
4357
|
* @memberof OauthConfigCreateForm
|
|
4340
4358
|
*/
|
|
4341
|
-
oauthConfigEnabled
|
|
4359
|
+
oauthConfigEnabled: boolean;
|
|
4360
|
+
/**
|
|
4361
|
+
*
|
|
4362
|
+
* @type {boolean}
|
|
4363
|
+
* @memberof OauthConfigCreateForm
|
|
4364
|
+
*/
|
|
4365
|
+
allowAnonymousSignUp: boolean;
|
|
4342
4366
|
}
|
|
4343
4367
|
/**
|
|
4344
4368
|
*
|
|
@@ -4372,16 +4396,16 @@ export interface OauthConfigPatchForm {
|
|
|
4372
4396
|
clientSecret?: string;
|
|
4373
4397
|
/**
|
|
4374
4398
|
*
|
|
4375
|
-
* @type {
|
|
4399
|
+
* @type {boolean}
|
|
4376
4400
|
* @memberof OauthConfigPatchForm
|
|
4377
4401
|
*/
|
|
4378
|
-
|
|
4402
|
+
oauthConfigEnabled?: boolean;
|
|
4379
4403
|
/**
|
|
4380
4404
|
*
|
|
4381
4405
|
* @type {boolean}
|
|
4382
4406
|
* @memberof OauthConfigPatchForm
|
|
4383
4407
|
*/
|
|
4384
|
-
|
|
4408
|
+
allowAnonymousSignUp?: boolean;
|
|
4385
4409
|
}
|
|
4386
4410
|
/**
|
|
4387
4411
|
*
|