@seamapi/types 1.246.0 → 1.247.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/dist/connect.cjs +301 -72
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +242 -2
- package/lib/seam/connect/models/acs/acs-user.js +72 -20
- package/lib/seam/connect/models/acs/acs-user.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +95 -2
- package/lib/seam/connect/openapi.js +253 -50
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +147 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-user.ts +90 -20
- package/src/lib/seam/connect/openapi.ts +293 -50
- package/src/lib/seam/connect/route-types.ts +147 -0
|
@@ -88,38 +88,90 @@ export const acs_users_warnings = z
|
|
|
88
88
|
.union([acs_users_being_deleted, acs_users_salto_ks_user_not_subscribed])
|
|
89
89
|
.describe('Warning associated with the `acs_user`.');
|
|
90
90
|
const user_fields = z.object({
|
|
91
|
-
full_name: z.string().optional(),
|
|
91
|
+
full_name: z.string().optional().describe('Full name of the `acs_user`.'),
|
|
92
92
|
email: z.string().email().optional().describe(`
|
|
93
93
|
---
|
|
94
94
|
deprecated: use email_address.
|
|
95
95
|
---
|
|
96
96
|
`),
|
|
97
|
-
email_address: z
|
|
98
|
-
|
|
97
|
+
email_address: z
|
|
98
|
+
.string()
|
|
99
|
+
.email()
|
|
100
|
+
.optional()
|
|
101
|
+
.describe('Email address of the `acs_user`.'),
|
|
102
|
+
phone_number: phone_number
|
|
103
|
+
.optional()
|
|
104
|
+
.describe('Phone number of the `acs_user` in E.164 format (for example, `+15555550100`).'),
|
|
99
105
|
});
|
|
100
106
|
const common_acs_user = z
|
|
101
107
|
.object({
|
|
102
|
-
acs_user_id: z.string().uuid(),
|
|
103
|
-
acs_system_id: z
|
|
108
|
+
acs_user_id: z.string().uuid().describe('ID of the `acs_user`.'),
|
|
109
|
+
acs_system_id: z
|
|
110
|
+
.string()
|
|
111
|
+
.uuid()
|
|
112
|
+
.describe('ID of the access control system that contains the `acs_user`.'),
|
|
104
113
|
hid_acs_system_id: z.string().uuid().optional(),
|
|
105
|
-
workspace_id: z
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
114
|
+
workspace_id: z
|
|
115
|
+
.string()
|
|
116
|
+
.uuid()
|
|
117
|
+
.describe('ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces) that contains the `acs_user`.'),
|
|
118
|
+
created_at: z
|
|
119
|
+
.string()
|
|
120
|
+
.datetime()
|
|
121
|
+
.describe('Date and time at which the `acs_user` was created.'),
|
|
122
|
+
display_name: z.string().describe('Display name for the `acs_user`.'),
|
|
123
|
+
external_type: acs_user_external_type
|
|
124
|
+
.optional()
|
|
125
|
+
.describe('Brand-specific terminology for the `acs_user` type.'),
|
|
126
|
+
external_type_display_name: z
|
|
127
|
+
.string()
|
|
128
|
+
.optional()
|
|
129
|
+
.describe('Display name that corresponds to the brand-specific terminology for the `acs_user` type.'),
|
|
130
|
+
is_suspended: z
|
|
131
|
+
.boolean()
|
|
132
|
+
.describe('Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users).'),
|
|
133
|
+
access_schedule: schedule
|
|
134
|
+
.optional()
|
|
135
|
+
.describe("`starts_at` and `ends_at` timestamps for the `acs_user`'s access."),
|
|
136
|
+
user_identity_id: z
|
|
137
|
+
.string()
|
|
138
|
+
.optional()
|
|
139
|
+
.describe('ID of the user identity associated with the `acs_user`.'),
|
|
140
|
+
user_identity_full_name: z
|
|
141
|
+
.string()
|
|
142
|
+
.nullable()
|
|
143
|
+
.optional()
|
|
144
|
+
.describe('Full name of the user identity associated with the `acs_user`.'),
|
|
145
|
+
user_identity_email_address: z
|
|
146
|
+
.string()
|
|
147
|
+
.nullable()
|
|
148
|
+
.optional()
|
|
149
|
+
.describe('Email address of the user identity associated with the `acs_user`.'),
|
|
150
|
+
user_identity_phone_number: z
|
|
151
|
+
.string()
|
|
152
|
+
.nullable()
|
|
153
|
+
.optional()
|
|
154
|
+
.describe('Phone number of the user identity associated with the `acs_user` in E.164 format (for example, `+15555550100`).'),
|
|
116
155
|
latest_desired_state_synced_with_provider_at: z
|
|
117
156
|
.string()
|
|
118
157
|
.datetime()
|
|
119
|
-
.optional()
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
158
|
+
.optional().describe(`
|
|
159
|
+
---
|
|
160
|
+
undocumented: Only used internally.
|
|
161
|
+
---
|
|
162
|
+
`),
|
|
163
|
+
is_latest_desired_state_synced_with_provider: z.boolean().optional()
|
|
164
|
+
.describe(`
|
|
165
|
+
---
|
|
166
|
+
undocumented: Only used internally.
|
|
167
|
+
---
|
|
168
|
+
`),
|
|
169
|
+
warnings: z
|
|
170
|
+
.array(acs_users_warnings)
|
|
171
|
+
.describe('Warnings associated with the `acs_user`.'),
|
|
172
|
+
errors: z
|
|
173
|
+
.array(acs_user_errors)
|
|
174
|
+
.describe('Errors associated with the `acs_user`.'),
|
|
123
175
|
})
|
|
124
176
|
.merge(user_fields);
|
|
125
177
|
export const acs_user = common_acs_user.merge(z.object({
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"acs-user.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/acs-user.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"acs-user.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/acs-user.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAA;AACjD,OAAO,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAA;AAEzC,MAAM,CAAC,MAAM,sBAAsB,GAAG,CAAC,CAAC,IAAI,CAAC;IAC3C,UAAU;IACV,YAAY;IACZ,6BAA6B;IAC7B,iBAAiB;IACjB,YAAY;CACb,CAAC,CAAA;AAIF,MAAM,qBAAqB,GAAG,CAAC,CAAC,MAAM,CAAC;IACrC,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,gDAAgD,CAAC;IAC7D,OAAO,EAAE,CAAC;SACP,MAAM,EAAE;SACR,QAAQ,CACP,wGAAwG,CACzG;CACJ,CAAC,CAAA;AAEF,MAAM,4BAA4B,GAAG,qBAAqB;KACvD,MAAM,CAAC;IACN,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,oBAAoB,CAAC;CAC5C,CAAC;KACD,QAAQ,CACP,8EAA8E,CAC/E,CAAA;AAEH,MAAM,8CAA8C,GAAG,qBAAqB;KACzE,MAAM,CAAC;IACN,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,sCAAsC,CAAC;CAC9D,CAAC;KACD,QAAQ,CACP,+GAA+G,CAChH,CAAA;AAEH,MAAM,wCAAwC,GAAG,qBAAqB;KACnE,MAAM,CAAC;IACN,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,gCAAgC,CAAC;CACxD,CAAC;KACD,QAAQ,CACP,qKAAqK,CACtK,CAAA;AAEH,MAAM,wCAAwC,GAAG,qBAAqB;KACnE,MAAM,CAAC;IACN,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,gCAAgC,CAAC;CACxD,CAAC;KACD,QAAQ,CACP,qKAAqK,CACtK,CAAA;AAEH,MAAM,wCAAwC,GAAG,qBAAqB;KACnE,MAAM,CAAC;IACN,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,gCAAgC,CAAC;CACxD,CAAC;KACD,QAAQ,CACP,qKAAqK,CACtK,CAAA;AAEH,MAAM,eAAe,GAAG,CAAC;KACtB,KAAK,CAAC;IACL,4BAA4B;IAC5B,8CAA8C;IAC9C,wCAAwC;IACxC,wCAAwC;IACxC,wCAAwC;CACzC,CAAC;KACD,QAAQ,CAAC,uCAAuC,CAAC,CAAA;AAEpD,MAAM,CAAC,MAAM,mBAAmB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC1C,kBAAkB,EAAE,4BAA4B,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;IACtE,oCAAoC,EAClC,8CAA8C,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;IACtE,8BAA8B,EAAE,wCAAwC;SACrE,QAAQ,EAAE;SACV,QAAQ,EAAE;IACb,8BAA8B,EAAE,wCAAwC;SACrE,QAAQ,EAAE;SACV,QAAQ,EAAE;IACb,8BAA8B,EAAE,wCAAwC;SACrE,QAAQ,EAAE;SACV,QAAQ,EAAE;CACd,CAAC,CAAA;AAIF,MAAM,uBAAuB,GAAG,CAAC,CAAC,MAAM,CAAC;IACvC,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE;CACpB,CAAC,CAAA;AAEF,MAAM,uBAAuB,GAAG,uBAAuB;KACpD,MAAM,CAAC;IACN,YAAY,EAAE,CAAC,CAAC,OAAO,CAAC,eAAe,CAAC;CACzC,CAAC;KACD,QAAQ,CACP,gIAAgI,CACjI,CAAA;AAEH,MAAM,sCAAsC,GAAG,uBAAuB;KACnE,MAAM,CAAC;IACN,YAAY,EAAE,CAAC,CAAC,OAAO,CAAC,8BAA8B,CAAC;CACxD,CAAC;KACD,QAAQ,CACP,6UAA6U,CAC9U,CAAA;AAEH,MAAM,CAAC,MAAM,qBAAqB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC5C,aAAa,EAAE,uBAAuB,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;IAC5D,4BAA4B,EAAE,sCAAsC;SACjE,QAAQ,EAAE;SACV,QAAQ,EAAE;CACd,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,kBAAkB,GAAG,CAAC;KAChC,KAAK,CAAC,CAAC,uBAAuB,EAAE,sCAAsC,CAAC,CAAC;KACxE,QAAQ,CAAC,yCAAyC,CAAC,CAAA;AAItD,MAAM,WAAW,GAAG,CAAC,CAAC,MAAM,CAAC;IAC3B,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,8BAA8B,CAAC;IACzE,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC;;;;KAI3C,CAAC;IACJ,aAAa,EAAE,CAAC;SACb,MAAM,EAAE;SACR,KAAK,EAAE;SACP,QAAQ,EAAE;SACV,QAAQ,CAAC,kCAAkC,CAAC;IAC/C,YAAY,EAAE,YAAY;SACvB,QAAQ,EAAE;SACV,QAAQ,CACP,+EAA+E,CAChF;CACJ,CAAC,CAAA;AAEF,MAAM,eAAe,GAAG,CAAC;KACtB,MAAM,CAAC;IACN,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,CAAC,uBAAuB,CAAC;IAChE,aAAa,EAAE,CAAC;SACb,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CACP,+DAA+D,CAChE;IACH,iBAAiB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE;IAC/C,YAAY,EAAE,CAAC;SACZ,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CACP,2GAA2G,CAC5G;IACH,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,oDAAoD,CAAC;IACjE,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,kCAAkC,CAAC;IACrE,aAAa,EAAE,sBAAsB;SAClC,QAAQ,EAAE;SACV,QAAQ,CAAC,qDAAqD,CAAC;IAClE,0BAA0B,EAAE,CAAC;SAC1B,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CACP,0FAA0F,CAC3F;IACH,YAAY,EAAE,CAAC;SACZ,OAAO,EAAE;SACT,QAAQ,CACP,4KAA4K,CAC7K;IACH,eAAe,EAAE,QAAQ;SACtB,QAAQ,EAAE;SACV,QAAQ,CACP,mEAAmE,CACpE;IACH,gBAAgB,EAAE,CAAC;SAChB,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,yDAAyD,CAAC;IACtE,uBAAuB,EAAE,CAAC;SACvB,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,EAAE;SACV,QAAQ,CACP,gEAAgE,CACjE;IACH,2BAA2B,EAAE,CAAC;SAC3B,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,EAAE;SACV,QAAQ,CACP,oEAAoE,CACrE;IACH,0BAA0B,EAAE,CAAC;SAC1B,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,EAAE;SACV,QAAQ,CACP,iHAAiH,CAClH;IACH,4CAA4C,EAAE,CAAC;SAC5C,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,EAAE,CAAC,QAAQ,CAAC;;;;OAIpB,CAAC;IACJ,4CAA4C,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;SACjE,QAAQ,CAAC;;;;OAIT,CAAC;IACJ,QAAQ,EAAE,CAAC;SACR,KAAK,CAAC,kBAAkB,CAAC;SACzB,QAAQ,CAAC,0CAA0C,CAAC;IACvD,MAAM,EAAE,CAAC;SACN,KAAK,CAAC,eAAe,CAAC;SACtB,QAAQ,CAAC,wCAAwC,CAAC;CACtD,CAAC;KACD,KAAK,CAAC,WAAW,CAAC,CAAA;AAErB,MAAM,CAAC,MAAM,QAAQ,GAAG,eAAe,CAAC,KAAK,CAC3C,CAAC,CAAC,MAAM,CAAC;IACP,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC;CAC5B,CAAC,CACH,CAAA;AAED,MAAM,CAAC,MAAM,kBAAkB,GAAG,eAAe,CAAC,KAAK,CACrD,CAAC,CAAC,MAAM,CAAC;IACP,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,KAAK,CAAC;CAC7B,CAAC,CACH,CAAA"}
|
|
@@ -679,6 +679,7 @@ declare const _default: {
|
|
|
679
679
|
acs_user: {
|
|
680
680
|
properties: {
|
|
681
681
|
access_schedule: {
|
|
682
|
+
description: string;
|
|
682
683
|
properties: {
|
|
683
684
|
ends_at: {
|
|
684
685
|
format: string;
|
|
@@ -693,18 +694,22 @@ declare const _default: {
|
|
|
693
694
|
type: string;
|
|
694
695
|
};
|
|
695
696
|
acs_system_id: {
|
|
697
|
+
description: string;
|
|
696
698
|
format: string;
|
|
697
699
|
type: string;
|
|
698
700
|
};
|
|
699
701
|
acs_user_id: {
|
|
702
|
+
description: string;
|
|
700
703
|
format: string;
|
|
701
704
|
type: string;
|
|
702
705
|
};
|
|
703
706
|
created_at: {
|
|
707
|
+
description: string;
|
|
704
708
|
format: string;
|
|
705
709
|
type: string;
|
|
706
710
|
};
|
|
707
711
|
display_name: {
|
|
712
|
+
description: string;
|
|
708
713
|
type: string;
|
|
709
714
|
};
|
|
710
715
|
email: {
|
|
@@ -714,10 +719,12 @@ declare const _default: {
|
|
|
714
719
|
'x-deprecated': string;
|
|
715
720
|
};
|
|
716
721
|
email_address: {
|
|
722
|
+
description: string;
|
|
717
723
|
format: string;
|
|
718
724
|
type: string;
|
|
719
725
|
};
|
|
720
726
|
errors: {
|
|
727
|
+
description: string;
|
|
721
728
|
items: {
|
|
722
729
|
description: string;
|
|
723
730
|
oneOf: {
|
|
@@ -744,13 +751,16 @@ declare const _default: {
|
|
|
744
751
|
type: string;
|
|
745
752
|
};
|
|
746
753
|
external_type: {
|
|
754
|
+
description: string;
|
|
747
755
|
enum: string[];
|
|
748
756
|
type: string;
|
|
749
757
|
};
|
|
750
758
|
external_type_display_name: {
|
|
759
|
+
description: string;
|
|
751
760
|
type: string;
|
|
752
761
|
};
|
|
753
762
|
full_name: {
|
|
763
|
+
description: string;
|
|
754
764
|
type: string;
|
|
755
765
|
};
|
|
756
766
|
hid_acs_system_id: {
|
|
@@ -759,37 +769,46 @@ declare const _default: {
|
|
|
759
769
|
};
|
|
760
770
|
is_latest_desired_state_synced_with_provider: {
|
|
761
771
|
type: string;
|
|
772
|
+
'x-undocumented': string;
|
|
762
773
|
};
|
|
763
774
|
is_managed: {
|
|
764
775
|
enum: boolean[];
|
|
765
776
|
type: string;
|
|
766
777
|
};
|
|
767
778
|
is_suspended: {
|
|
779
|
+
description: string;
|
|
768
780
|
type: string;
|
|
769
781
|
};
|
|
770
782
|
latest_desired_state_synced_with_provider_at: {
|
|
771
783
|
format: string;
|
|
772
784
|
type: string;
|
|
785
|
+
'x-undocumented': string;
|
|
773
786
|
};
|
|
774
787
|
phone_number: {
|
|
788
|
+
description: string;
|
|
775
789
|
type: string;
|
|
776
790
|
};
|
|
777
791
|
user_identity_email_address: {
|
|
792
|
+
description: string;
|
|
778
793
|
nullable: boolean;
|
|
779
794
|
type: string;
|
|
780
795
|
};
|
|
781
796
|
user_identity_full_name: {
|
|
797
|
+
description: string;
|
|
782
798
|
nullable: boolean;
|
|
783
799
|
type: string;
|
|
784
800
|
};
|
|
785
801
|
user_identity_id: {
|
|
802
|
+
description: string;
|
|
786
803
|
type: string;
|
|
787
804
|
};
|
|
788
805
|
user_identity_phone_number: {
|
|
806
|
+
description: string;
|
|
789
807
|
nullable: boolean;
|
|
790
808
|
type: string;
|
|
791
809
|
};
|
|
792
810
|
warnings: {
|
|
811
|
+
description: string;
|
|
793
812
|
items: {
|
|
794
813
|
description: string;
|
|
795
814
|
oneOf: {
|
|
@@ -814,6 +833,7 @@ declare const _default: {
|
|
|
814
833
|
type: string;
|
|
815
834
|
};
|
|
816
835
|
workspace_id: {
|
|
836
|
+
description: string;
|
|
817
837
|
format: string;
|
|
818
838
|
type: string;
|
|
819
839
|
};
|
|
@@ -8450,13 +8470,16 @@ declare const _default: {
|
|
|
8450
8470
|
'x-deprecated': string;
|
|
8451
8471
|
};
|
|
8452
8472
|
email_address: {
|
|
8473
|
+
description: string;
|
|
8453
8474
|
format: string;
|
|
8454
8475
|
type: string;
|
|
8455
8476
|
};
|
|
8456
8477
|
full_name: {
|
|
8478
|
+
description: string;
|
|
8457
8479
|
type: string;
|
|
8458
8480
|
};
|
|
8459
8481
|
phone_number: {
|
|
8482
|
+
description: string;
|
|
8460
8483
|
type: string;
|
|
8461
8484
|
};
|
|
8462
8485
|
user_identity_id: {
|
|
@@ -9066,21 +9089,37 @@ declare const _default: {
|
|
|
9066
9089
|
acs_user: {
|
|
9067
9090
|
properties: {
|
|
9068
9091
|
access_schedule: {
|
|
9069
|
-
|
|
9092
|
+
description: string;
|
|
9093
|
+
properties: {
|
|
9094
|
+
ends_at: {
|
|
9095
|
+
format: string;
|
|
9096
|
+
type: string;
|
|
9097
|
+
};
|
|
9098
|
+
starts_at: {
|
|
9099
|
+
format: string;
|
|
9100
|
+
type: string;
|
|
9101
|
+
};
|
|
9102
|
+
};
|
|
9103
|
+
required: string[];
|
|
9104
|
+
type: string;
|
|
9070
9105
|
};
|
|
9071
9106
|
acs_system_id: {
|
|
9107
|
+
description: string;
|
|
9072
9108
|
format: string;
|
|
9073
9109
|
type: string;
|
|
9074
9110
|
};
|
|
9075
9111
|
acs_user_id: {
|
|
9112
|
+
description: string;
|
|
9076
9113
|
format: string;
|
|
9077
9114
|
type: string;
|
|
9078
9115
|
};
|
|
9079
9116
|
created_at: {
|
|
9117
|
+
description: string;
|
|
9080
9118
|
format: string;
|
|
9081
9119
|
type: string;
|
|
9082
9120
|
};
|
|
9083
9121
|
display_name: {
|
|
9122
|
+
description: string;
|
|
9084
9123
|
type: string;
|
|
9085
9124
|
};
|
|
9086
9125
|
email: {
|
|
@@ -9090,10 +9129,12 @@ declare const _default: {
|
|
|
9090
9129
|
'x-deprecated': string;
|
|
9091
9130
|
};
|
|
9092
9131
|
email_address: {
|
|
9132
|
+
description: string;
|
|
9093
9133
|
format: string;
|
|
9094
9134
|
type: string;
|
|
9095
9135
|
};
|
|
9096
9136
|
errors: {
|
|
9137
|
+
description: string;
|
|
9097
9138
|
items: {
|
|
9098
9139
|
description: string;
|
|
9099
9140
|
oneOf: {
|
|
@@ -9120,13 +9161,16 @@ declare const _default: {
|
|
|
9120
9161
|
type: string;
|
|
9121
9162
|
};
|
|
9122
9163
|
external_type: {
|
|
9164
|
+
description: string;
|
|
9123
9165
|
enum: string[];
|
|
9124
9166
|
type: string;
|
|
9125
9167
|
};
|
|
9126
9168
|
external_type_display_name: {
|
|
9169
|
+
description: string;
|
|
9127
9170
|
type: string;
|
|
9128
9171
|
};
|
|
9129
9172
|
full_name: {
|
|
9173
|
+
description: string;
|
|
9130
9174
|
type: string;
|
|
9131
9175
|
};
|
|
9132
9176
|
hid_acs_system_id: {
|
|
@@ -9135,37 +9179,46 @@ declare const _default: {
|
|
|
9135
9179
|
};
|
|
9136
9180
|
is_latest_desired_state_synced_with_provider: {
|
|
9137
9181
|
type: string;
|
|
9182
|
+
'x-undocumented': string;
|
|
9138
9183
|
};
|
|
9139
9184
|
is_managed: {
|
|
9140
9185
|
enum: boolean[];
|
|
9141
9186
|
type: string;
|
|
9142
9187
|
};
|
|
9143
9188
|
is_suspended: {
|
|
9189
|
+
description: string;
|
|
9144
9190
|
type: string;
|
|
9145
9191
|
};
|
|
9146
9192
|
latest_desired_state_synced_with_provider_at: {
|
|
9147
9193
|
format: string;
|
|
9148
9194
|
type: string;
|
|
9195
|
+
'x-undocumented': string;
|
|
9149
9196
|
};
|
|
9150
9197
|
phone_number: {
|
|
9198
|
+
description: string;
|
|
9151
9199
|
type: string;
|
|
9152
9200
|
};
|
|
9153
9201
|
user_identity_email_address: {
|
|
9202
|
+
description: string;
|
|
9154
9203
|
nullable: boolean;
|
|
9155
9204
|
type: string;
|
|
9156
9205
|
};
|
|
9157
9206
|
user_identity_full_name: {
|
|
9207
|
+
description: string;
|
|
9158
9208
|
nullable: boolean;
|
|
9159
9209
|
type: string;
|
|
9160
9210
|
};
|
|
9161
9211
|
user_identity_id: {
|
|
9212
|
+
description: string;
|
|
9162
9213
|
type: string;
|
|
9163
9214
|
};
|
|
9164
9215
|
user_identity_phone_number: {
|
|
9216
|
+
description: string;
|
|
9165
9217
|
nullable: boolean;
|
|
9166
9218
|
type: string;
|
|
9167
9219
|
};
|
|
9168
9220
|
warnings: {
|
|
9221
|
+
description: string;
|
|
9169
9222
|
items: {
|
|
9170
9223
|
description: string;
|
|
9171
9224
|
oneOf: {
|
|
@@ -9190,6 +9243,7 @@ declare const _default: {
|
|
|
9190
9243
|
type: string;
|
|
9191
9244
|
};
|
|
9192
9245
|
workspace_id: {
|
|
9246
|
+
description: string;
|
|
9193
9247
|
format: string;
|
|
9194
9248
|
type: string;
|
|
9195
9249
|
};
|
|
@@ -9279,21 +9333,37 @@ declare const _default: {
|
|
|
9279
9333
|
items: {
|
|
9280
9334
|
properties: {
|
|
9281
9335
|
access_schedule: {
|
|
9282
|
-
|
|
9336
|
+
description: string;
|
|
9337
|
+
properties: {
|
|
9338
|
+
ends_at: {
|
|
9339
|
+
format: string;
|
|
9340
|
+
type: string;
|
|
9341
|
+
};
|
|
9342
|
+
starts_at: {
|
|
9343
|
+
format: string;
|
|
9344
|
+
type: string;
|
|
9345
|
+
};
|
|
9346
|
+
};
|
|
9347
|
+
required: string[];
|
|
9348
|
+
type: string;
|
|
9283
9349
|
};
|
|
9284
9350
|
acs_system_id: {
|
|
9351
|
+
description: string;
|
|
9285
9352
|
format: string;
|
|
9286
9353
|
type: string;
|
|
9287
9354
|
};
|
|
9288
9355
|
acs_user_id: {
|
|
9356
|
+
description: string;
|
|
9289
9357
|
format: string;
|
|
9290
9358
|
type: string;
|
|
9291
9359
|
};
|
|
9292
9360
|
created_at: {
|
|
9361
|
+
description: string;
|
|
9293
9362
|
format: string;
|
|
9294
9363
|
type: string;
|
|
9295
9364
|
};
|
|
9296
9365
|
display_name: {
|
|
9366
|
+
description: string;
|
|
9297
9367
|
type: string;
|
|
9298
9368
|
};
|
|
9299
9369
|
email: {
|
|
@@ -9303,10 +9373,12 @@ declare const _default: {
|
|
|
9303
9373
|
'x-deprecated': string;
|
|
9304
9374
|
};
|
|
9305
9375
|
email_address: {
|
|
9376
|
+
description: string;
|
|
9306
9377
|
format: string;
|
|
9307
9378
|
type: string;
|
|
9308
9379
|
};
|
|
9309
9380
|
errors: {
|
|
9381
|
+
description: string;
|
|
9310
9382
|
items: {
|
|
9311
9383
|
description: string;
|
|
9312
9384
|
oneOf: {
|
|
@@ -9333,13 +9405,16 @@ declare const _default: {
|
|
|
9333
9405
|
type: string;
|
|
9334
9406
|
};
|
|
9335
9407
|
external_type: {
|
|
9408
|
+
description: string;
|
|
9336
9409
|
enum: string[];
|
|
9337
9410
|
type: string;
|
|
9338
9411
|
};
|
|
9339
9412
|
external_type_display_name: {
|
|
9413
|
+
description: string;
|
|
9340
9414
|
type: string;
|
|
9341
9415
|
};
|
|
9342
9416
|
full_name: {
|
|
9417
|
+
description: string;
|
|
9343
9418
|
type: string;
|
|
9344
9419
|
};
|
|
9345
9420
|
hid_acs_system_id: {
|
|
@@ -9348,37 +9423,46 @@ declare const _default: {
|
|
|
9348
9423
|
};
|
|
9349
9424
|
is_latest_desired_state_synced_with_provider: {
|
|
9350
9425
|
type: string;
|
|
9426
|
+
'x-undocumented': string;
|
|
9351
9427
|
};
|
|
9352
9428
|
is_managed: {
|
|
9353
9429
|
enum: boolean[];
|
|
9354
9430
|
type: string;
|
|
9355
9431
|
};
|
|
9356
9432
|
is_suspended: {
|
|
9433
|
+
description: string;
|
|
9357
9434
|
type: string;
|
|
9358
9435
|
};
|
|
9359
9436
|
latest_desired_state_synced_with_provider_at: {
|
|
9360
9437
|
format: string;
|
|
9361
9438
|
type: string;
|
|
9439
|
+
'x-undocumented': string;
|
|
9362
9440
|
};
|
|
9363
9441
|
phone_number: {
|
|
9442
|
+
description: string;
|
|
9364
9443
|
type: string;
|
|
9365
9444
|
};
|
|
9366
9445
|
user_identity_email_address: {
|
|
9446
|
+
description: string;
|
|
9367
9447
|
nullable: boolean;
|
|
9368
9448
|
type: string;
|
|
9369
9449
|
};
|
|
9370
9450
|
user_identity_full_name: {
|
|
9451
|
+
description: string;
|
|
9371
9452
|
nullable: boolean;
|
|
9372
9453
|
type: string;
|
|
9373
9454
|
};
|
|
9374
9455
|
user_identity_id: {
|
|
9456
|
+
description: string;
|
|
9375
9457
|
type: string;
|
|
9376
9458
|
};
|
|
9377
9459
|
user_identity_phone_number: {
|
|
9460
|
+
description: string;
|
|
9378
9461
|
nullable: boolean;
|
|
9379
9462
|
type: string;
|
|
9380
9463
|
};
|
|
9381
9464
|
warnings: {
|
|
9465
|
+
description: string;
|
|
9382
9466
|
items: {
|
|
9383
9467
|
description: string;
|
|
9384
9468
|
oneOf: {
|
|
@@ -9403,6 +9487,7 @@ declare const _default: {
|
|
|
9403
9487
|
type: string;
|
|
9404
9488
|
};
|
|
9405
9489
|
workspace_id: {
|
|
9490
|
+
description: string;
|
|
9406
9491
|
format: string;
|
|
9407
9492
|
type: string;
|
|
9408
9493
|
};
|
|
@@ -9542,6 +9627,7 @@ declare const _default: {
|
|
|
9542
9627
|
type: string;
|
|
9543
9628
|
};
|
|
9544
9629
|
acs_user_id: {
|
|
9630
|
+
description: string;
|
|
9545
9631
|
format: string;
|
|
9546
9632
|
type: string;
|
|
9547
9633
|
};
|
|
@@ -9552,10 +9638,12 @@ declare const _default: {
|
|
|
9552
9638
|
'x-deprecated': string;
|
|
9553
9639
|
};
|
|
9554
9640
|
email_address: {
|
|
9641
|
+
description: string;
|
|
9555
9642
|
format: string;
|
|
9556
9643
|
type: string;
|
|
9557
9644
|
};
|
|
9558
9645
|
full_name: {
|
|
9646
|
+
description: string;
|
|
9559
9647
|
type: string;
|
|
9560
9648
|
};
|
|
9561
9649
|
hid_acs_system_id: {
|
|
@@ -9563,6 +9651,7 @@ declare const _default: {
|
|
|
9563
9651
|
type: string;
|
|
9564
9652
|
};
|
|
9565
9653
|
phone_number: {
|
|
9654
|
+
description: string;
|
|
9566
9655
|
type: string;
|
|
9567
9656
|
};
|
|
9568
9657
|
};
|
|
@@ -9639,6 +9728,7 @@ declare const _default: {
|
|
|
9639
9728
|
type: string;
|
|
9640
9729
|
};
|
|
9641
9730
|
acs_user_id: {
|
|
9731
|
+
description: string;
|
|
9642
9732
|
format: string;
|
|
9643
9733
|
type: string;
|
|
9644
9734
|
};
|
|
@@ -9649,10 +9739,12 @@ declare const _default: {
|
|
|
9649
9739
|
'x-deprecated': string;
|
|
9650
9740
|
};
|
|
9651
9741
|
email_address: {
|
|
9742
|
+
description: string;
|
|
9652
9743
|
format: string;
|
|
9653
9744
|
type: string;
|
|
9654
9745
|
};
|
|
9655
9746
|
full_name: {
|
|
9747
|
+
description: string;
|
|
9656
9748
|
type: string;
|
|
9657
9749
|
};
|
|
9658
9750
|
hid_acs_system_id: {
|
|
@@ -9660,6 +9752,7 @@ declare const _default: {
|
|
|
9660
9752
|
type: string;
|
|
9661
9753
|
};
|
|
9662
9754
|
phone_number: {
|
|
9755
|
+
description: string;
|
|
9663
9756
|
type: string;
|
|
9664
9757
|
};
|
|
9665
9758
|
};
|