@databricks/sdk-scim 0.38.0 → 0.40.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/package.js +1 -1
- package/dist/v1/model.js +30 -6
- package/dist/v1/model.js.map +1 -1
- package/package.json +4 -4
package/dist/package.js
CHANGED
package/dist/v1/model.js
CHANGED
|
@@ -187,7 +187,11 @@ const unmarshalGroupSchema = z.object({
|
|
|
187
187
|
const unmarshalListAccountGroupsResponseSchema = z.object({
|
|
188
188
|
itemsPerPage: z.number().optional(),
|
|
189
189
|
Resources: z.array(z.lazy(() => unmarshalAccountGroupSchema)).optional(),
|
|
190
|
-
startIndex: z.union([
|
|
190
|
+
startIndex: z.union([
|
|
191
|
+
z.number(),
|
|
192
|
+
z.bigint(),
|
|
193
|
+
z.string()
|
|
194
|
+
]).transform((v) => BigInt(v)).optional(),
|
|
191
195
|
totalResults: z.number().optional()
|
|
192
196
|
}).transform((d) => ({
|
|
193
197
|
itemsPerPage: d.itemsPerPage,
|
|
@@ -198,7 +202,11 @@ const unmarshalListAccountGroupsResponseSchema = z.object({
|
|
|
198
202
|
const unmarshalListAccountServicePrincipalsResponseSchema = z.object({
|
|
199
203
|
itemsPerPage: z.number().optional(),
|
|
200
204
|
Resources: z.array(z.lazy(() => unmarshalAccountServicePrincipalSchema)).optional(),
|
|
201
|
-
startIndex: z.union([
|
|
205
|
+
startIndex: z.union([
|
|
206
|
+
z.number(),
|
|
207
|
+
z.bigint(),
|
|
208
|
+
z.string()
|
|
209
|
+
]).transform((v) => BigInt(v)).optional(),
|
|
202
210
|
totalResults: z.number().optional()
|
|
203
211
|
}).transform((d) => ({
|
|
204
212
|
itemsPerPage: d.itemsPerPage,
|
|
@@ -209,7 +217,11 @@ const unmarshalListAccountServicePrincipalsResponseSchema = z.object({
|
|
|
209
217
|
const unmarshalListAccountUsersResponseSchema = z.object({
|
|
210
218
|
itemsPerPage: z.number().optional(),
|
|
211
219
|
Resources: z.array(z.lazy(() => unmarshalAccountUserSchema)).optional(),
|
|
212
|
-
startIndex: z.union([
|
|
220
|
+
startIndex: z.union([
|
|
221
|
+
z.number(),
|
|
222
|
+
z.bigint(),
|
|
223
|
+
z.string()
|
|
224
|
+
]).transform((v) => BigInt(v)).optional(),
|
|
213
225
|
totalResults: z.number().optional()
|
|
214
226
|
}).transform((d) => ({
|
|
215
227
|
itemsPerPage: d.itemsPerPage,
|
|
@@ -221,7 +233,11 @@ const unmarshalListGroupsResponseSchema = z.object({
|
|
|
221
233
|
itemsPerPage: z.number().optional(),
|
|
222
234
|
Resources: z.array(z.lazy(() => unmarshalGroupSchema)).optional(),
|
|
223
235
|
schemas: z.array(z.string()).optional(),
|
|
224
|
-
startIndex: z.union([
|
|
236
|
+
startIndex: z.union([
|
|
237
|
+
z.number(),
|
|
238
|
+
z.bigint(),
|
|
239
|
+
z.string()
|
|
240
|
+
]).transform((v) => BigInt(v)).optional(),
|
|
225
241
|
totalResults: z.number().optional()
|
|
226
242
|
}).transform((d) => ({
|
|
227
243
|
itemsPerPage: d.itemsPerPage,
|
|
@@ -234,7 +250,11 @@ const unmarshalListServicePrincipalResponseSchema = z.object({
|
|
|
234
250
|
itemsPerPage: z.number().optional(),
|
|
235
251
|
Resources: z.array(z.lazy(() => unmarshalServicePrincipalSchema)).optional(),
|
|
236
252
|
schemas: z.array(z.string()).optional(),
|
|
237
|
-
startIndex: z.union([
|
|
253
|
+
startIndex: z.union([
|
|
254
|
+
z.number(),
|
|
255
|
+
z.bigint(),
|
|
256
|
+
z.string()
|
|
257
|
+
]).transform((v) => BigInt(v)).optional(),
|
|
238
258
|
totalResults: z.number().optional()
|
|
239
259
|
}).transform((d) => ({
|
|
240
260
|
itemsPerPage: d.itemsPerPage,
|
|
@@ -247,7 +267,11 @@ const unmarshalListUsersResponseSchema = z.object({
|
|
|
247
267
|
itemsPerPage: z.number().optional(),
|
|
248
268
|
Resources: z.array(z.lazy(() => unmarshalUserSchema)).optional(),
|
|
249
269
|
schemas: z.array(z.string()).optional(),
|
|
250
|
-
startIndex: z.union([
|
|
270
|
+
startIndex: z.union([
|
|
271
|
+
z.number(),
|
|
272
|
+
z.bigint(),
|
|
273
|
+
z.string()
|
|
274
|
+
]).transform((v) => BigInt(v)).optional(),
|
|
251
275
|
totalResults: z.number().optional()
|
|
252
276
|
}).transform((d) => ({
|
|
253
277
|
itemsPerPage: d.itemsPerPage,
|
package/dist/v1/model.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"model.js","names":[],"sources":["../../src/v1/model.ts"],"sourcesContent":["// Code generated from API definition by Databricks SDK Generator. DO NOT EDIT.\n\nimport type {JsonValue} from '@databricks/sdk-core/wkt';\nimport {z} from 'zod';\n\nconst jsonValueSchema: z.ZodType<JsonValue> = z.lazy(() =>\n z.union([\n z.null(),\n z.number(),\n z.string(),\n z.boolean(),\n z.record(z.string(), jsonValueSchema),\n z.array(jsonValueSchema),\n ])\n);\n\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const GetSortOrder = {\n GET_SORT_ORDER_UNSPECIFIED: 'GET_SORT_ORDER_UNSPECIFIED',\n ASCENDING: 'ascending',\n DESCENDING: 'descending',\n} as const;\nexport type GetSortOrder =\n | (typeof GetSortOrder)[keyof typeof GetSortOrder]\n | (string & {});\n\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const GroupSchema = {\n GROUP_SCHEMA_UNSPECIFIED: 'GROUP_SCHEMA_UNSPECIFIED',\n URN_IETF_PARAMS_SCIM_SCHEMAS_CORE_2_0_GROUP:\n 'urn:ietf:params:scim:schemas:core:2.0:Group',\n} as const;\nexport type GroupSchema =\n | (typeof GroupSchema)[keyof typeof GroupSchema]\n | (string & {});\n\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const ListResponseSchema = {\n LIST_RESPONSE_SCHEMA_UNSPECIFIED: 'LIST_RESPONSE_SCHEMA_UNSPECIFIED',\n URN_IETF_PARAMS_SCIM_API_MESSAGES_2_0_LIST_RESPONSE:\n 'urn:ietf:params:scim:api:messages:2.0:ListResponse',\n} as const;\nexport type ListResponseSchema =\n | (typeof ListResponseSchema)[keyof typeof ListResponseSchema]\n | (string & {});\n\n/** Type of patch operation. */\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const PatchOp = {\n PATCH_OP_UNSPECIFIED: 'PATCH_OP_UNSPECIFIED',\n ADD: 'add',\n REMOVE: 'remove',\n REPLACE: 'replace',\n} as const;\nexport type PatchOp = (typeof PatchOp)[keyof typeof PatchOp] | (string & {});\n\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const PatchSchema = {\n PATCH_SCHEMA_UNSPECIFIED: 'PATCH_SCHEMA_UNSPECIFIED',\n URN_IETF_PARAMS_SCIM_API_MESSAGES_2_0_PATCH_OP:\n 'urn:ietf:params:scim:api:messages:2.0:PatchOp',\n} as const;\nexport type PatchSchema =\n | (typeof PatchSchema)[keyof typeof PatchSchema]\n | (string & {});\n\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const ServicePrincipalSchema = {\n SERVICE_PRINCIPAL_SCHEMA_UNSPECIFIED: 'SERVICE_PRINCIPAL_SCHEMA_UNSPECIFIED',\n URN_IETF_PARAMS_SCIM_SCHEMAS_CORE_2_0_SERVICE_PRINCIPAL:\n 'urn:ietf:params:scim:schemas:core:2.0:ServicePrincipal',\n} as const;\nexport type ServicePrincipalSchema =\n | (typeof ServicePrincipalSchema)[keyof typeof ServicePrincipalSchema]\n | (string & {});\n\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const UserSchema = {\n USER_SCHEMA_UNSPECIFIED: 'USER_SCHEMA_UNSPECIFIED',\n URN_IETF_PARAMS_SCIM_SCHEMAS_CORE_2_0_USER:\n 'urn:ietf:params:scim:schemas:core:2.0:User',\n URN_IETF_PARAMS_SCIM_SCHEMAS_EXTENSION_WORKSPACE_2_0_USER:\n 'urn:ietf:params:scim:schemas:extension:workspace:2.0:User',\n} as const;\nexport type UserSchema =\n | (typeof UserSchema)[keyof typeof UserSchema]\n | (string & {});\n\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const AccountGetSortOrder_GetSortOrder = {\n GET_SORT_ORDER_UNSPECIFIED: 'GET_SORT_ORDER_UNSPECIFIED',\n ASCENDING: 'ascending',\n DESCENDING: 'descending',\n} as const;\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Proto-style nested enum name.\nexport type AccountGetSortOrder_GetSortOrder =\n | (typeof AccountGetSortOrder_GetSortOrder)[keyof typeof AccountGetSortOrder_GetSortOrder]\n | (string & {});\n\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const AccountListSort_Order = {\n ORDER_UNSPECIFIED: 'ORDER_UNSPECIFIED',\n ASCENDING: 'ascending',\n DESCENDING: 'descending',\n} as const;\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Proto-style nested enum name.\nexport type AccountListSort_Order =\n | (typeof AccountListSort_Order)[keyof typeof AccountListSort_Order]\n | (string & {});\n\n/** Type of patch operation. */\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const AccountPatchOp_PatchOp = {\n PATCH_OP_UNSPECIFIED: 'PATCH_OP_UNSPECIFIED',\n ADD: 'add',\n REMOVE: 'remove',\n REPLACE: 'replace',\n} as const;\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Proto-style nested enum name.\nexport type AccountPatchOp_PatchOp =\n | (typeof AccountPatchOp_PatchOp)[keyof typeof AccountPatchOp_PatchOp]\n | (string & {});\n\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const AccountPatchSchema_PatchSchema = {\n PATCH_SCHEMA_UNSPECIFIED: 'PATCH_SCHEMA_UNSPECIFIED',\n URN_IETF_PARAMS_SCIM_API_MESSAGES_2_0_PATCH_OP:\n 'urn:ietf:params:scim:api:messages:2.0:PatchOp',\n} as const;\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Proto-style nested enum name.\nexport type AccountPatchSchema_PatchSchema =\n | (typeof AccountPatchSchema_PatchSchema)[keyof typeof AccountPatchSchema_PatchSchema]\n | (string & {});\n\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const ListSort_Order = {\n ORDER_UNSPECIFIED: 'ORDER_UNSPECIFIED',\n ASCENDING: 'ascending',\n DESCENDING: 'descending',\n} as const;\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Proto-style nested enum name.\nexport type ListSort_Order =\n | (typeof ListSort_Order)[keyof typeof ListSort_Order]\n | (string & {});\n\n/** Permission level */\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const PasswordPermission_Level = {\n LEVEL_UNSPECIFIED: 'LEVEL_UNSPECIFIED',\n CAN_USE: 'CAN_USE',\n} as const;\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Proto-style nested enum name.\nexport type PasswordPermission_Level =\n | (typeof PasswordPermission_Level)[keyof typeof PasswordPermission_Level]\n | (string & {});\n\nexport interface AccountComplexValue {\n display?: string | undefined;\n primary?: boolean | undefined;\n ref?: string | undefined;\n type?: string | undefined;\n value?: string | undefined;\n}\n\n// eslint-disable-next-line @typescript-eslint/no-empty-object-type\nexport interface AccountGetSortOrder {}\n\nexport interface AccountGroup {\n /** String that represents a human-readable group name */\n displayName?: string | undefined;\n /** external_id should be unique for identifying groups */\n externalId?: string | undefined;\n /** <Databricks> group ID */\n id?: string | undefined;\n members?: AccountComplexValue[] | undefined;\n /** Container for the group identifier. Workspace local versus account. */\n meta?: AccountResourceMeta | undefined;\n /** Indicates if the group has the admin role. */\n roles?: AccountComplexValue[] | undefined;\n /** <Databricks> account ID */\n accountId?: string | undefined;\n}\n\n/**\n * ListSortOrder and GetSortOrder share enum values, which is not supported.\n * We use nesting as a workaround.\n */\n// eslint-disable-next-line @typescript-eslint/no-empty-object-type\nexport interface AccountListSort {}\n\nexport interface AccountName {\n /** Family name of the <Databricks> user. */\n familyName?: string | undefined;\n /** Given name of the <Databricks> user. */\n givenName?: string | undefined;\n}\n\nexport interface AccountPatch {\n /** Type of patch operation. */\n op?: AccountPatchOp_PatchOp | undefined;\n /** Selection of patch operation */\n path?: string | undefined;\n /** Value to modify */\n value?: JsonValue | undefined;\n}\n\n// eslint-disable-next-line @typescript-eslint/no-empty-object-type\nexport interface AccountPatchOp {}\n\n// eslint-disable-next-line @typescript-eslint/no-empty-object-type\nexport interface AccountPatchSchema {}\n\nexport interface AccountResourceMeta {\n /** Identifier for group type. Can be local workspace group (`WorkspaceGroup`) or account group (`Group`). */\n resourceType?: string | undefined;\n}\n\nexport interface AccountServicePrincipal {\n /** If this user is active */\n active?: boolean | undefined;\n /** UUID relating to the service principal */\n applicationId?: string | undefined;\n /** String that represents a concatenation of given and family names. */\n displayName?: string | undefined;\n externalId?: string | undefined;\n /** <Databricks> service principal ID. */\n id?: string | undefined;\n /** Indicates if the group has the admin role. */\n roles?: AccountComplexValue[] | undefined;\n /** <Databricks> account ID */\n accountId?: string | undefined;\n}\n\nexport interface AccountUser {\n /** If this user is active */\n active?: boolean | undefined;\n /** String that represents a concatenation of given and family names. For example `John Smith`. */\n displayName?: string | undefined;\n /** All the emails associated with the <Databricks> user. This attribute cannot be updated through the SCIM PATCH or PUT APIs; any supplied change is ignored. */\n emails?: AccountComplexValue[] | undefined;\n /** External ID is not currently supported. It is reserved for future use. */\n externalId?: string | undefined;\n /** <Databricks> user ID. */\n id?: string | undefined;\n name?: AccountName | undefined;\n /** Indicates if the group has the admin role. */\n roles?: AccountComplexValue[] | undefined;\n /** Email address of the <Databricks> user. This attribute cannot be updated through the SCIM PATCH or PUT APIs; any supplied change is ignored. */\n userName?: string | undefined;\n /** <Databricks> account ID */\n accountId?: string | undefined;\n}\n\nexport interface ComplexValue {\n display?: string | undefined;\n primary?: boolean | undefined;\n ref?: string | undefined;\n type?: string | undefined;\n value?: string | undefined;\n}\n\nexport interface CreateAccountGroupRequest {\n /** String that represents a human-readable group name */\n displayName?: string | undefined;\n externalId?: string | undefined;\n /** <Databricks> group ID */\n id?: string | undefined;\n members?: AccountComplexValue[] | undefined;\n /** Container for the group identifier. Workspace local versus account. */\n meta?: AccountResourceMeta | undefined;\n /** Indicates if the group has the admin role. */\n roles?: AccountComplexValue[] | undefined;\n /** <Databricks> account ID */\n accountId?: string | undefined;\n}\n\nexport interface CreateAccountServicePrincipalRequest {\n /** If this user is active */\n active?: boolean | undefined;\n /** UUID relating to the service principal */\n applicationId?: string | undefined;\n /** String that represents a concatenation of given and family names. */\n displayName?: string | undefined;\n externalId?: string | undefined;\n /** <Databricks> service principal ID. */\n id?: string | undefined;\n /** Indicates if the group has the admin role. */\n roles?: AccountComplexValue[] | undefined;\n /** <Databricks> account ID */\n accountId?: string | undefined;\n}\n\nexport interface CreateAccountUserRequest {\n /** If this user is active */\n active?: boolean | undefined;\n /** String that represents a concatenation of given and family names. For example `John Smith`. */\n displayName?: string | undefined;\n /** All the emails associated with the <Databricks> user. */\n emails?: AccountComplexValue[] | undefined;\n /** External ID is not currently supported. It is reserved for future use. */\n externalId?: string | undefined;\n /** <Databricks> user ID. */\n id?: string | undefined;\n name?: AccountName | undefined;\n /** Indicates if the group has the admin role. */\n roles?: AccountComplexValue[] | undefined;\n /** Email address of the <Databricks> user. */\n userName?: string | undefined;\n /** <Databricks> account ID */\n accountId?: string | undefined;\n}\n\nexport interface CreateGroupRequest {\n /** String that represents a human-readable group name */\n displayName?: string | undefined;\n /** Entitlements assigned to the group. See [assigning entitlements](https://docs.databricks.com/administration-guide/users-groups/index.html#assigning-entitlements) for a full list of supported values. */\n entitlements?: ComplexValue[] | undefined;\n externalId?: string | undefined;\n groups?: ComplexValue[] | undefined;\n /** <Databricks> group ID */\n id?: string | undefined;\n members?: ComplexValue[] | undefined;\n /** Container for the group identifier. Workspace local versus account. */\n meta?: ResourceMeta | undefined;\n /** Corresponds to AWS instance profile/arn role. */\n roles?: ComplexValue[] | undefined;\n /** The schema of the group. */\n schemas?: GroupSchema[] | undefined;\n}\n\nexport interface CreateServicePrincipalRequest {\n /** If this user is active */\n active?: boolean | undefined;\n /** UUID relating to the service principal */\n applicationId?: string | undefined;\n /** String that represents a concatenation of given and family names. */\n displayName?: string | undefined;\n /** Entitlements assigned to the service principal. See [assigning entitlements](https://docs.databricks.com/administration-guide/users-groups/index.html#assigning-entitlements) for a full list of supported values. */\n entitlements?: ComplexValue[] | undefined;\n externalId?: string | undefined;\n groups?: ComplexValue[] | undefined;\n /** <Databricks> service principal ID. */\n id?: string | undefined;\n /** Corresponds to AWS instance profile/arn role. */\n roles?: ComplexValue[] | undefined;\n /** The schema of the List response. */\n schemas?: ServicePrincipalSchema[] | undefined;\n}\n\nexport interface CreateUserRequest {\n /** If this user is active */\n active?: boolean | undefined;\n /** String that represents a concatenation of given and family names. For example `John Smith`. This field cannot be updated through the Workspace SCIM APIs when [identity federation is enabled](https://docs.databricks.com/administration-guide/users-groups/best-practices.html#enable-identity-federation). Use Account SCIM APIs to update `displayName`. */\n displayName?: string | undefined;\n /** All the emails associated with the <Databricks> user. */\n emails?: ComplexValue[] | undefined;\n /** Entitlements assigned to the user. See [assigning entitlements](https://docs.databricks.com/administration-guide/users-groups/index.html#assigning-entitlements) for a full list of supported values. */\n entitlements?: ComplexValue[] | undefined;\n /** External ID is not currently supported. It is reserved for future use. */\n externalId?: string | undefined;\n groups?: ComplexValue[] | undefined;\n /** <Databricks> user ID. */\n id?: string | undefined;\n name?: Name | undefined;\n /** Corresponds to AWS instance profile/arn role. */\n roles?: ComplexValue[] | undefined;\n /** The schema of the user. */\n schemas?: UserSchema[] | undefined;\n /** Email address of the <Databricks> user. */\n userName?: string | undefined;\n}\n\n/** Delete a group */\nexport interface DeleteAccountGroupRequest {\n /** Unique ID for a group in the <Databricks> account. */\n id?: string | undefined;\n /** <Databricks> account ID */\n accountId?: string | undefined;\n}\n\n/** Delete a service principal */\nexport interface DeleteAccountServicePrincipalRequest {\n /** Unique ID for a service principal in the <Databricks> account. */\n id?: string | undefined;\n /** <Databricks> account ID */\n accountId?: string | undefined;\n}\n\n/** Delete a user */\nexport interface DeleteAccountUserRequest {\n /** Unique ID for a user in the <Databricks> account. */\n id?: string | undefined;\n /** <Databricks> account ID */\n accountId?: string | undefined;\n}\n\n/** Delete a group */\nexport interface DeleteGroupRequest {\n /** Unique ID for a group in the <Databricks> workspace. */\n id?: string | undefined;\n}\n\n/** Delete a service principal */\nexport interface DeleteServicePrincipalRequest {\n /** Unique ID for a service principal in the <Databricks> workspace. */\n id?: string | undefined;\n}\n\n/** Delete a user */\nexport interface DeleteUserRequest {\n /** Unique ID for a user in the <Databricks> workspace. */\n id?: string | undefined;\n}\n\n/** Get group details */\nexport interface GetAccountGroupRequest {\n /** Unique ID for a group in the <Databricks> account. */\n id?: string | undefined;\n /** <Databricks> account ID */\n accountId?: string | undefined;\n}\n\n/** Get service principal details */\nexport interface GetAccountServicePrincipalRequest {\n /** Unique ID for a service principal in the <Databricks> account. */\n id?: string | undefined;\n /** <Databricks> account ID */\n accountId?: string | undefined;\n}\n\n/** Get user details */\nexport interface GetAccountUserRequest {\n /** Comma-separated list of attributes to return in response. */\n attributes?: string | undefined;\n /** Desired number of results per page. Default is 10000. */\n count?: number | undefined;\n /** Comma-separated list of attributes to exclude in response. */\n excludedAttributes?: string | undefined;\n /** Query by which the results have to be filtered. Supported operators are equals(`eq`), contains(`co`), starts with(`sw`) and not equals(`ne`). Additionally, simple expressions can be formed using logical operators - `and` and `or`. The [SCIM RFC](https://tools.ietf.org/html/rfc7644#section-3.4.2.2) has more details but we currently only support simple expressions. */\n filter?: string | undefined;\n /** Unique ID for a user in the <Databricks> account. */\n id?: string | undefined;\n /** Attribute to sort the results. Multi-part paths are supported. For example, `userName`, `name.givenName`, and `emails`. */\n sortBy?: string | undefined;\n /** The order to sort the results. */\n sortOrder?: AccountGetSortOrder_GetSortOrder | undefined;\n /** Specifies the index of the first result. First item is number 1. */\n startIndex?: number | undefined;\n /** <Databricks> account ID */\n accountId?: string | undefined;\n}\n\n/** Get group details */\nexport interface GetGroupRequest {\n /** Unique ID for a group in the <Databricks> workspace. */\n id?: string | undefined;\n}\n\n/** Get object permission levels */\n// eslint-disable-next-line @typescript-eslint/no-empty-object-type\nexport interface GetPasswordPermissionLevelsRequest {}\n\nexport interface GetPasswordPermissionLevelsResponse {\n /** Specific permission levels */\n permissionLevels?: PasswordPermissionsDescription[] | undefined;\n}\n\n// eslint-disable-next-line @typescript-eslint/no-empty-object-type\nexport interface GetPasswordPermissionsRequest {}\n\n/** Get service principal details */\nexport interface GetServicePrincipalRequest {\n /** Unique ID for a service principal in the <Databricks> workspace. */\n id?: string | undefined;\n}\n\n/** Get user details */\nexport interface GetUserRequest {\n /** Comma-separated list of attributes to return in response. */\n attributes?: string | undefined;\n /** Desired number of results per page. */\n count?: number | undefined;\n /** Comma-separated list of attributes to exclude in response. */\n excludedAttributes?: string | undefined;\n /** Query by which the results have to be filtered. Supported operators are equals(`eq`), contains(`co`), starts with(`sw`) and not equals(`ne`). Additionally, simple expressions can be formed using logical operators - `and` and `or`. The [SCIM RFC](https://tools.ietf.org/html/rfc7644#section-3.4.2.2) has more details but we currently only support simple expressions. */\n filter?: string | undefined;\n /** Unique ID for a user in the <Databricks> workspace. */\n id?: string | undefined;\n /** Attribute to sort the results. Multi-part paths are supported. For example, `userName`, `name.givenName`, and `emails`. */\n sortBy?: string | undefined;\n /** The order to sort the results. */\n sortOrder?: GetSortOrder | undefined;\n /** Specifies the index of the first result. First item is number 1. */\n startIndex?: number | undefined;\n}\n\nexport interface Group {\n /** String that represents a human-readable group name */\n displayName?: string | undefined;\n /** Entitlements assigned to the group. See [assigning entitlements](https://docs.databricks.com/administration-guide/users-groups/index.html#assigning-entitlements) for a full list of supported values. */\n entitlements?: ComplexValue[] | undefined;\n /** external_id should be unique for identifying groups */\n externalId?: string | undefined;\n groups?: ComplexValue[] | undefined;\n /** <Databricks> group ID */\n id?: string | undefined;\n members?: ComplexValue[] | undefined;\n /** Container for the group identifier. Workspace local versus account. */\n meta?: ResourceMeta | undefined;\n /** Corresponds to AWS instance profile/arn role. */\n roles?: ComplexValue[] | undefined;\n /** The schema of the group. */\n schemas?: GroupSchema[] | undefined;\n}\n\n/** List group details */\nexport interface ListAccountGroupsRequest {\n /** <Databricks> account ID */\n accountId?: string | undefined;\n /** Query by which the results have to be filtered. Supported operators are equals(`eq`), contains(`co`), starts with(`sw`) and not equals(`ne`). Additionally, simple expressions can be formed using logical operators - `and` and `or`. The [SCIM RFC](https://tools.ietf.org/html/rfc7644#section-3.4.2.2) has more details but we currently only support simple expressions. */\n filter?: string | undefined;\n /** Comma-separated list of attributes to return in response. */\n attributes?: string | undefined;\n /** Comma-separated list of attributes to exclude in response. */\n excludedAttributes?: string | undefined;\n /** Specifies the index of the first result. First item is number 1. */\n startIndex?: bigint | undefined;\n /** Desired number of results per page. Default is 10000. */\n count?: bigint | undefined;\n /** Attribute to sort the results. */\n sortBy?: string | undefined;\n /** The order to sort the results. */\n sortOrder?: AccountListSort_Order | undefined;\n}\n\nexport interface ListAccountGroupsResponse {\n /** Total results returned in the response. */\n itemsPerPage?: number | undefined;\n /** User objects returned in the response. */\n resources?: AccountGroup[] | undefined;\n /** Starting index of all the results that matched the request filters. First item is number 1. */\n startIndex?: bigint | undefined;\n /** Total results that match the request filters. */\n totalResults?: number | undefined;\n}\n\n/** List service principals */\nexport interface ListAccountServicePrincipalsRequest {\n /** Comma-separated list of attributes to return in response. */\n attributes?: string | undefined;\n /** Desired number of results per page. Default is 10000. */\n count?: bigint | undefined;\n /** Comma-separated list of attributes to exclude in response. */\n excludedAttributes?: string | undefined;\n /** Query by which the results have to be filtered. Supported operators are equals(`eq`), contains(`co`), starts with(`sw`) and not equals(`ne`). Additionally, simple expressions can be formed using logical operators - `and` and `or`. The [SCIM RFC](https://tools.ietf.org/html/rfc7644#section-3.4.2.2) has more details but we currently only support simple expressions. */\n filter?: string | undefined;\n /** Attribute to sort the results. */\n sortBy?: string | undefined;\n /** The order to sort the results. */\n sortOrder?: AccountListSort_Order | undefined;\n /** Specifies the index of the first result. First item is number 1. */\n startIndex?: bigint | undefined;\n /** <Databricks> account ID */\n accountId?: string | undefined;\n}\n\nexport interface ListAccountServicePrincipalsResponse {\n /** Total results returned in the response. */\n itemsPerPage?: number | undefined;\n /** User objects returned in the response. */\n resources?: AccountServicePrincipal[] | undefined;\n /** Starting index of all the results that matched the request filters. First item is number 1. */\n startIndex?: bigint | undefined;\n /** Total results that match the request filters. */\n totalResults?: number | undefined;\n}\n\n/** List users */\nexport interface ListAccountUsersRequest {\n /** Comma-separated list of attributes to return in response. */\n attributes?: string | undefined;\n /** Desired number of results per page. Default is 10000. */\n count?: bigint | undefined;\n /** Comma-separated list of attributes to exclude in response. */\n excludedAttributes?: string | undefined;\n /** Query by which the results have to be filtered. Supported operators are equals(`eq`), contains(`co`), starts with(`sw`) and not equals(`ne`). Additionally, simple expressions can be formed using logical operators - `and` and `or`. The [SCIM RFC](https://tools.ietf.org/html/rfc7644#section-3.4.2.2) has more details but we currently only support simple expressions. */\n filter?: string | undefined;\n /** Attribute to sort the results. Multi-part paths are supported. For example, `userName`, `name.givenName`, and `emails`. */\n sortBy?: string | undefined;\n /** The order to sort the results. */\n sortOrder?: AccountListSort_Order | undefined;\n /** Specifies the index of the first result. First item is number 1. */\n startIndex?: bigint | undefined;\n /** <Databricks> account ID */\n accountId?: string | undefined;\n}\n\nexport interface ListAccountUsersResponse {\n /** Total results returned in the response. */\n itemsPerPage?: number | undefined;\n /** User objects returned in the response. */\n resources?: AccountUser[] | undefined;\n /** Starting index of all the results that matched the request filters. First item is number 1. */\n startIndex?: bigint | undefined;\n /** Total results that match the request filters. */\n totalResults?: number | undefined;\n}\n\n/** List group details */\nexport interface ListGroupsRequest {\n /** Query by which the results have to be filtered. Supported operators are equals(`eq`), contains(`co`), starts with(`sw`) and not equals(`ne`). Additionally, simple expressions can be formed using logical operators - `and` and `or`. The [SCIM RFC](https://tools.ietf.org/html/rfc7644#section-3.4.2.2) has more details but we currently only support simple expressions. */\n filter?: string | undefined;\n /** Comma-separated list of attributes to return in response. */\n attributes?: string | undefined;\n /** Comma-separated list of attributes to exclude in response. */\n excludedAttributes?: string | undefined;\n /** Specifies the index of the first result. First item is number 1. */\n startIndex?: bigint | undefined;\n /** Desired number of results per page. */\n count?: bigint | undefined;\n /** Attribute to sort the results. */\n sortBy?: string | undefined;\n /** The order to sort the results. */\n sortOrder?: ListSort_Order | undefined;\n}\n\nexport interface ListGroupsResponse {\n /** Total results returned in the response. */\n itemsPerPage?: number | undefined;\n /** User objects returned in the response. */\n resources?: Group[] | undefined;\n /** The schema of the service principal. */\n schemas?: ListResponseSchema[] | undefined;\n /** Starting index of all the results that matched the request filters. First item is number 1. */\n startIndex?: bigint | undefined;\n /** Total results that match the request filters. */\n totalResults?: number | undefined;\n}\n\nexport interface ListServicePrincipalResponse {\n /** Total results returned in the response. */\n itemsPerPage?: number | undefined;\n /** User objects returned in the response. */\n resources?: ServicePrincipal[] | undefined;\n /** The schema of the List response. */\n schemas?: ListResponseSchema[] | undefined;\n /** Starting index of all the results that matched the request filters. First item is number 1. */\n startIndex?: bigint | undefined;\n /** Total results that match the request filters. */\n totalResults?: number | undefined;\n}\n\n/** List service principals */\nexport interface ListServicePrincipalsRequest {\n /** Comma-separated list of attributes to return in response. */\n attributes?: string | undefined;\n /** Desired number of results per page. */\n count?: bigint | undefined;\n /** Comma-separated list of attributes to exclude in response. */\n excludedAttributes?: string | undefined;\n /** Query by which the results have to be filtered. Supported operators are equals(`eq`), contains(`co`), starts with(`sw`) and not equals(`ne`). Additionally, simple expressions can be formed using logical operators - `and` and `or`. The [SCIM RFC](https://tools.ietf.org/html/rfc7644#section-3.4.2.2) has more details but we currently only support simple expressions. */\n filter?: string | undefined;\n /** Attribute to sort the results. */\n sortBy?: string | undefined;\n /** The order to sort the results. */\n sortOrder?: ListSort_Order | undefined;\n /** Specifies the index of the first result. First item is number 1. */\n startIndex?: bigint | undefined;\n}\n\n/**\n * ListSortOrder and GetSortOrder share enum values, which is not supported.\n * We use nesting as a workaround.\n */\n// eslint-disable-next-line @typescript-eslint/no-empty-object-type\nexport interface ListSort {}\n\n/** List users */\nexport interface ListUsersRequest {\n /** Comma-separated list of attributes to return in response. */\n attributes?: string | undefined;\n /** Desired number of results per page. */\n count?: bigint | undefined;\n /** Comma-separated list of attributes to exclude in response. */\n excludedAttributes?: string | undefined;\n /** Query by which the results have to be filtered. Supported operators are equals(`eq`), contains(`co`), starts with(`sw`) and not equals(`ne`). Additionally, simple expressions can be formed using logical operators - `and` and `or`. The [SCIM RFC](https://tools.ietf.org/html/rfc7644#section-3.4.2.2) has more details but we currently only support simple expressions. */\n filter?: string | undefined;\n /** Attribute to sort the results. Multi-part paths are supported. For example, `userName`, `name.givenName`, and `emails`. */\n sortBy?: string | undefined;\n /** The order to sort the results. */\n sortOrder?: ListSort_Order | undefined;\n /** Specifies the index of the first result. First item is number 1. */\n startIndex?: bigint | undefined;\n}\n\nexport interface ListUsersResponse {\n /** Total results returned in the response. */\n itemsPerPage?: number | undefined;\n /** User objects returned in the response. */\n resources?: User[] | undefined;\n /** The schema of the List response. */\n schemas?: ListResponseSchema[] | undefined;\n /** Starting index of all the results that matched the request filters. First item is number 1. */\n startIndex?: bigint | undefined;\n /** Total results that match the request filters. */\n totalResults?: number | undefined;\n}\n\nexport interface MeRequest {\n /** Comma-separated list of attributes to return in response. */\n attributes?: string | undefined;\n /** Comma-separated list of attributes to exclude in response. */\n excludedAttributes?: string | undefined;\n}\n\nexport interface Name {\n /** Family name of the <Databricks> user. */\n familyName?: string | undefined;\n /** Given name of the <Databricks> user. */\n givenName?: string | undefined;\n}\n\nexport interface PasswordAccessControlRequest {\n /** name of the group */\n groupName?: string | undefined;\n /** Permission level */\n permissionLevel?: PasswordPermission_Level | undefined;\n /** application ID of a service principal */\n servicePrincipalName?: string | undefined;\n /** name of the user */\n userName?: string | undefined;\n}\n\nexport interface PasswordAccessControlResponse {\n /** All permissions. */\n allPermissions?: PasswordPermission[] | undefined;\n /** Display name of the user or service principal. */\n displayName?: string | undefined;\n /** name of the group */\n groupName?: string | undefined;\n /** Name of the service principal. */\n servicePrincipalName?: string | undefined;\n /** name of the user */\n userName?: string | undefined;\n}\n\nexport interface PasswordPermission {\n inherited?: boolean | undefined;\n inheritedFromObject?: string[] | undefined;\n /** Permission level */\n permissionLevel?: PasswordPermission_Level | undefined;\n}\n\nexport interface PasswordPermissions {\n accessControlList?: PasswordAccessControlResponse[] | undefined;\n objectId?: string | undefined;\n objectType?: string | undefined;\n}\n\nexport interface PasswordPermissionsDescription {\n description?: string | undefined;\n /** Permission level */\n permissionLevel?: PasswordPermission_Level | undefined;\n}\n\nexport interface PasswordPermissionsRequest {\n accessControlList?: PasswordAccessControlRequest[] | undefined;\n}\n\nexport interface Patch {\n /** Type of patch operation. */\n op?: PatchOp | undefined;\n /** Selection of patch operation */\n path?: string | undefined;\n /** Value to modify */\n value?: JsonValue | undefined;\n}\n\nexport interface PatchAccountGroupRequest {\n /** Unique ID in the <Databricks> workspace. */\n id?: string | undefined;\n operations?: AccountPatch[] | undefined;\n /** The schema of the patch request. Must be [\"urn:ietf:params:scim:api:messages:2.0:PatchOp\"]. */\n schemas?: AccountPatchSchema_PatchSchema[] | undefined;\n /** <Databricks> account ID */\n accountId?: string | undefined;\n}\n\nexport interface PatchAccountServicePrincipalRequest {\n /** Unique ID in the <Databricks> workspace. */\n id?: string | undefined;\n operations?: AccountPatch[] | undefined;\n /** The schema of the patch request. Must be [\"urn:ietf:params:scim:api:messages:2.0:PatchOp\"]. */\n schemas?: AccountPatchSchema_PatchSchema[] | undefined;\n /** <Databricks> account ID */\n accountId?: string | undefined;\n}\n\nexport interface PatchAccountUserRequest {\n /** Unique ID in the <Databricks> workspace. */\n id?: string | undefined;\n operations?: AccountPatch[] | undefined;\n /** The schema of the patch request. Must be [\"urn:ietf:params:scim:api:messages:2.0:PatchOp\"]. */\n schemas?: AccountPatchSchema_PatchSchema[] | undefined;\n /** <Databricks> account ID */\n accountId?: string | undefined;\n}\n\nexport interface PatchGroupRequest {\n /** Unique ID in the <Databricks> workspace. */\n id?: string | undefined;\n operations?: Patch[] | undefined;\n /** The schema of the patch request. Must be [\"urn:ietf:params:scim:api:messages:2.0:PatchOp\"]. */\n schemas?: PatchSchema[] | undefined;\n}\n\nexport interface PatchServicePrincipalRequest {\n /** Unique ID in the <Databricks> workspace. */\n id?: string | undefined;\n operations?: Patch[] | undefined;\n /** The schema of the patch request. Must be [\"urn:ietf:params:scim:api:messages:2.0:PatchOp\"]. */\n schemas?: PatchSchema[] | undefined;\n}\n\nexport interface PatchUserRequest {\n /** Unique ID in the <Databricks> workspace. */\n id?: string | undefined;\n operations?: Patch[] | undefined;\n /** The schema of the patch request. Must be [\"urn:ietf:params:scim:api:messages:2.0:PatchOp\"]. */\n schemas?: PatchSchema[] | undefined;\n}\n\nexport interface ResourceMeta {\n /** Identifier for group type. Can be local workspace group (`WorkspaceGroup`) or account group (`Group`). */\n resourceType?: string | undefined;\n}\n\nexport interface ServicePrincipal {\n /** If this user is active */\n active?: boolean | undefined;\n /** UUID relating to the service principal */\n applicationId?: string | undefined;\n /** String that represents a concatenation of given and family names. */\n displayName?: string | undefined;\n /** Entitlements assigned to the service principal. See [assigning entitlements](https://docs.databricks.com/administration-guide/users-groups/index.html#assigning-entitlements) for a full list of supported values. */\n entitlements?: ComplexValue[] | undefined;\n externalId?: string | undefined;\n groups?: ComplexValue[] | undefined;\n /** <Databricks> service principal ID. */\n id?: string | undefined;\n /** Corresponds to AWS instance profile/arn role. */\n roles?: ComplexValue[] | undefined;\n /** The schema of the List response. */\n schemas?: ServicePrincipalSchema[] | undefined;\n}\n\nexport interface UpdateAccountGroupRequest {\n /** String that represents a human-readable group name */\n displayName?: string | undefined;\n externalId?: string | undefined;\n /** <Databricks> group ID */\n id?: string | undefined;\n members?: AccountComplexValue[] | undefined;\n /** Container for the group identifier. Workspace local versus account. */\n meta?: AccountResourceMeta | undefined;\n /** Indicates if the group has the admin role. */\n roles?: AccountComplexValue[] | undefined;\n /** <Databricks> account ID */\n accountId?: string | undefined;\n}\n\nexport interface UpdateAccountServicePrincipalRequest {\n /** If this user is active */\n active?: boolean | undefined;\n /** UUID relating to the service principal */\n applicationId?: string | undefined;\n /** String that represents a concatenation of given and family names. */\n displayName?: string | undefined;\n externalId?: string | undefined;\n /** <Databricks> service principal ID. */\n id?: string | undefined;\n /** Indicates if the group has the admin role. */\n roles?: AccountComplexValue[] | undefined;\n /** <Databricks> account ID */\n accountId?: string | undefined;\n}\n\nexport interface UpdateAccountUserRequest {\n /** If this user is active */\n active?: boolean | undefined;\n /** String that represents a concatenation of given and family names. For example `John Smith`. */\n displayName?: string | undefined;\n /** All the emails associated with the <Databricks> user. This attribute cannot be updated through the SCIM PATCH or PUT APIs; any supplied change is ignored. */\n emails?: AccountComplexValue[] | undefined;\n /** External ID is not currently supported. It is reserved for future use. */\n externalId?: string | undefined;\n /** <Databricks> user ID. */\n id?: string | undefined;\n name?: AccountName | undefined;\n /** Indicates if the group has the admin role. */\n roles?: AccountComplexValue[] | undefined;\n /** Email address of the <Databricks> user. This attribute cannot be updated through the SCIM PATCH or PUT APIs; any supplied change is ignored. */\n userName?: string | undefined;\n /** <Databricks> account ID */\n accountId?: string | undefined;\n}\n\nexport interface UpdateGroupRequest {\n /** String that represents a human-readable group name */\n displayName?: string | undefined;\n /** Entitlements assigned to the group. See [assigning entitlements](https://docs.databricks.com/administration-guide/users-groups/index.html#assigning-entitlements) for a full list of supported values. */\n entitlements?: ComplexValue[] | undefined;\n externalId?: string | undefined;\n groups?: ComplexValue[] | undefined;\n /** <Databricks> group ID */\n id?: string | undefined;\n members?: ComplexValue[] | undefined;\n /** Container for the group identifier. Workspace local versus account. */\n meta?: ResourceMeta | undefined;\n /** Corresponds to AWS instance profile/arn role. */\n roles?: ComplexValue[] | undefined;\n /** The schema of the group. */\n schemas?: GroupSchema[] | undefined;\n}\n\nexport interface UpdateServicePrincipalRequest {\n /** If this user is active */\n active?: boolean | undefined;\n /** UUID relating to the service principal */\n applicationId?: string | undefined;\n /** String that represents a concatenation of given and family names. */\n displayName?: string | undefined;\n /** Entitlements assigned to the service principal. See [assigning entitlements](https://docs.databricks.com/administration-guide/users-groups/index.html#assigning-entitlements) for a full list of supported values. */\n entitlements?: ComplexValue[] | undefined;\n externalId?: string | undefined;\n groups?: ComplexValue[] | undefined;\n /** <Databricks> service principal ID. */\n id?: string | undefined;\n /** Corresponds to AWS instance profile/arn role. */\n roles?: ComplexValue[] | undefined;\n /** The schema of the List response. */\n schemas?: ServicePrincipalSchema[] | undefined;\n}\n\nexport interface UpdateUserRequest {\n /** If this user is active */\n active?: boolean | undefined;\n /** String that represents a concatenation of given and family names. For example `John Smith`. This field cannot be updated through the Workspace SCIM APIs when [identity federation is enabled](https://docs.databricks.com/administration-guide/users-groups/best-practices.html#enable-identity-federation). Use Account SCIM APIs to update `displayName`. */\n displayName?: string | undefined;\n /** All the emails associated with the <Databricks> user. This attribute cannot be updated through the SCIM PATCH or PUT APIs; any supplied change is ignored. */\n emails?: ComplexValue[] | undefined;\n /** Entitlements assigned to the user. See [assigning entitlements](https://docs.databricks.com/administration-guide/users-groups/index.html#assigning-entitlements) for a full list of supported values. */\n entitlements?: ComplexValue[] | undefined;\n /** External ID is not currently supported. It is reserved for future use. */\n externalId?: string | undefined;\n groups?: ComplexValue[] | undefined;\n /** <Databricks> user ID. */\n id?: string | undefined;\n name?: Name | undefined;\n /** Corresponds to AWS instance profile/arn role. */\n roles?: ComplexValue[] | undefined;\n /** The schema of the user. */\n schemas?: UserSchema[] | undefined;\n /** Email address of the <Databricks> user. This attribute cannot be updated through the SCIM PATCH or PUT APIs; any supplied change is ignored. */\n userName?: string | undefined;\n}\n\nexport interface User {\n /** If this user is active */\n active?: boolean | undefined;\n /** String that represents a concatenation of given and family names. For example `John Smith`. This field cannot be updated through the Workspace SCIM APIs when [identity federation is enabled](https://docs.databricks.com/administration-guide/users-groups/best-practices.html#enable-identity-federation). Use Account SCIM APIs to update `displayName`. */\n displayName?: string | undefined;\n /** All the emails associated with the <Databricks> user. This attribute cannot be updated through the SCIM PATCH or PUT APIs; any supplied change is ignored. */\n emails?: ComplexValue[] | undefined;\n /** Entitlements assigned to the user. See [assigning entitlements](https://docs.databricks.com/administration-guide/users-groups/index.html#assigning-entitlements) for a full list of supported values. */\n entitlements?: ComplexValue[] | undefined;\n /** External ID is not currently supported. It is reserved for future use. */\n externalId?: string | undefined;\n groups?: ComplexValue[] | undefined;\n /** <Databricks> user ID. */\n id?: string | undefined;\n name?: Name | undefined;\n /** Corresponds to AWS instance profile/arn role. */\n roles?: ComplexValue[] | undefined;\n /** The schema of the user. */\n schemas?: UserSchema[] | undefined;\n /** Email address of the <Databricks> user. This attribute cannot be updated through the SCIM PATCH or PUT APIs; any supplied change is ignored. */\n userName?: string | undefined;\n}\n\nexport const unmarshalAccountComplexValueSchema: z.ZodType<AccountComplexValue> =\n z\n .object({\n display: z.string().optional(),\n primary: z.boolean().optional(),\n $ref: z.string().optional(),\n type: z.string().optional(),\n value: z.string().optional(),\n })\n .transform(d => ({\n display: d.display,\n primary: d.primary,\n ref: d.$ref,\n type: d.type,\n value: d.value,\n }));\n\nexport const unmarshalAccountGroupSchema: z.ZodType<AccountGroup> = z\n .object({\n displayName: z.string().optional(),\n externalId: z.string().optional(),\n id: z.string().optional(),\n members: z\n .array(z.lazy(() => unmarshalAccountComplexValueSchema))\n .optional(),\n meta: z.lazy(() => unmarshalAccountResourceMetaSchema).optional(),\n roles: z.array(z.lazy(() => unmarshalAccountComplexValueSchema)).optional(),\n account_id: z.string().optional(),\n })\n .transform(d => ({\n displayName: d.displayName,\n externalId: d.externalId,\n id: d.id,\n members: d.members,\n meta: d.meta,\n roles: d.roles,\n accountId: d.account_id,\n }));\n\nexport const unmarshalAccountNameSchema: z.ZodType<AccountName> = z\n .object({\n familyName: z.string().optional(),\n givenName: z.string().optional(),\n })\n .transform(d => ({\n familyName: d.familyName,\n givenName: d.givenName,\n }));\n\nexport const unmarshalAccountResourceMetaSchema: z.ZodType<AccountResourceMeta> =\n z\n .object({\n resourceType: z.string().optional(),\n })\n .transform(d => ({\n resourceType: d.resourceType,\n }));\n\nexport const unmarshalAccountServicePrincipalSchema: z.ZodType<AccountServicePrincipal> =\n z\n .object({\n active: z.boolean().optional(),\n applicationId: z.string().optional(),\n displayName: z.string().optional(),\n externalId: z.string().optional(),\n id: z.string().optional(),\n roles: z\n .array(z.lazy(() => unmarshalAccountComplexValueSchema))\n .optional(),\n account_id: z.string().optional(),\n })\n .transform(d => ({\n active: d.active,\n applicationId: d.applicationId,\n displayName: d.displayName,\n externalId: d.externalId,\n id: d.id,\n roles: d.roles,\n accountId: d.account_id,\n }));\n\nexport const unmarshalAccountUserSchema: z.ZodType<AccountUser> = z\n .object({\n active: z.boolean().optional(),\n displayName: z.string().optional(),\n emails: z\n .array(z.lazy(() => unmarshalAccountComplexValueSchema))\n .optional(),\n externalId: z.string().optional(),\n id: z.string().optional(),\n name: z.lazy(() => unmarshalAccountNameSchema).optional(),\n roles: z.array(z.lazy(() => unmarshalAccountComplexValueSchema)).optional(),\n userName: z.string().optional(),\n account_id: z.string().optional(),\n })\n .transform(d => ({\n active: d.active,\n displayName: d.displayName,\n emails: d.emails,\n externalId: d.externalId,\n id: d.id,\n name: d.name,\n roles: d.roles,\n userName: d.userName,\n accountId: d.account_id,\n }));\n\nexport const unmarshalComplexValueSchema: z.ZodType<ComplexValue> = z\n .object({\n display: z.string().optional(),\n primary: z.boolean().optional(),\n $ref: z.string().optional(),\n type: z.string().optional(),\n value: z.string().optional(),\n })\n .transform(d => ({\n display: d.display,\n primary: d.primary,\n ref: d.$ref,\n type: d.type,\n value: d.value,\n }));\n\nexport const unmarshalGetPasswordPermissionLevelsResponseSchema: z.ZodType<GetPasswordPermissionLevelsResponse> =\n z\n .object({\n permission_levels: z\n .array(z.lazy(() => unmarshalPasswordPermissionsDescriptionSchema))\n .optional(),\n })\n .transform(d => ({\n permissionLevels: d.permission_levels,\n }));\n\nexport const unmarshalGroupSchema: z.ZodType<Group> = z\n .object({\n displayName: z.string().optional(),\n entitlements: z.array(z.lazy(() => unmarshalComplexValueSchema)).optional(),\n externalId: z.string().optional(),\n groups: z.array(z.lazy(() => unmarshalComplexValueSchema)).optional(),\n id: z.string().optional(),\n members: z.array(z.lazy(() => unmarshalComplexValueSchema)).optional(),\n meta: z.lazy(() => unmarshalResourceMetaSchema).optional(),\n roles: z.array(z.lazy(() => unmarshalComplexValueSchema)).optional(),\n schemas: z.array(z.string()).optional(),\n })\n .transform(d => ({\n displayName: d.displayName,\n entitlements: d.entitlements,\n externalId: d.externalId,\n groups: d.groups,\n id: d.id,\n members: d.members,\n meta: d.meta,\n roles: d.roles,\n schemas: d.schemas,\n }));\n\nexport const unmarshalListAccountGroupsResponseSchema: z.ZodType<ListAccountGroupsResponse> =\n z\n .object({\n itemsPerPage: z.number().optional(),\n Resources: z.array(z.lazy(() => unmarshalAccountGroupSchema)).optional(),\n startIndex: z\n .union([z.number(), z.bigint()])\n .transform(v => BigInt(v))\n .optional(),\n totalResults: z.number().optional(),\n })\n .transform(d => ({\n itemsPerPage: d.itemsPerPage,\n resources: d.Resources,\n startIndex: d.startIndex,\n totalResults: d.totalResults,\n }));\n\nexport const unmarshalListAccountServicePrincipalsResponseSchema: z.ZodType<ListAccountServicePrincipalsResponse> =\n z\n .object({\n itemsPerPage: z.number().optional(),\n Resources: z\n .array(z.lazy(() => unmarshalAccountServicePrincipalSchema))\n .optional(),\n startIndex: z\n .union([z.number(), z.bigint()])\n .transform(v => BigInt(v))\n .optional(),\n totalResults: z.number().optional(),\n })\n .transform(d => ({\n itemsPerPage: d.itemsPerPage,\n resources: d.Resources,\n startIndex: d.startIndex,\n totalResults: d.totalResults,\n }));\n\nexport const unmarshalListAccountUsersResponseSchema: z.ZodType<ListAccountUsersResponse> =\n z\n .object({\n itemsPerPage: z.number().optional(),\n Resources: z.array(z.lazy(() => unmarshalAccountUserSchema)).optional(),\n startIndex: z\n .union([z.number(), z.bigint()])\n .transform(v => BigInt(v))\n .optional(),\n totalResults: z.number().optional(),\n })\n .transform(d => ({\n itemsPerPage: d.itemsPerPage,\n resources: d.Resources,\n startIndex: d.startIndex,\n totalResults: d.totalResults,\n }));\n\nexport const unmarshalListGroupsResponseSchema: z.ZodType<ListGroupsResponse> =\n z\n .object({\n itemsPerPage: z.number().optional(),\n Resources: z.array(z.lazy(() => unmarshalGroupSchema)).optional(),\n schemas: z.array(z.string()).optional(),\n startIndex: z\n .union([z.number(), z.bigint()])\n .transform(v => BigInt(v))\n .optional(),\n totalResults: z.number().optional(),\n })\n .transform(d => ({\n itemsPerPage: d.itemsPerPage,\n resources: d.Resources,\n schemas: d.schemas,\n startIndex: d.startIndex,\n totalResults: d.totalResults,\n }));\n\nexport const unmarshalListServicePrincipalResponseSchema: z.ZodType<ListServicePrincipalResponse> =\n z\n .object({\n itemsPerPage: z.number().optional(),\n Resources: z\n .array(z.lazy(() => unmarshalServicePrincipalSchema))\n .optional(),\n schemas: z.array(z.string()).optional(),\n startIndex: z\n .union([z.number(), z.bigint()])\n .transform(v => BigInt(v))\n .optional(),\n totalResults: z.number().optional(),\n })\n .transform(d => ({\n itemsPerPage: d.itemsPerPage,\n resources: d.Resources,\n schemas: d.schemas,\n startIndex: d.startIndex,\n totalResults: d.totalResults,\n }));\n\nexport const unmarshalListUsersResponseSchema: z.ZodType<ListUsersResponse> = z\n .object({\n itemsPerPage: z.number().optional(),\n Resources: z.array(z.lazy(() => unmarshalUserSchema)).optional(),\n schemas: z.array(z.string()).optional(),\n startIndex: z\n .union([z.number(), z.bigint()])\n .transform(v => BigInt(v))\n .optional(),\n totalResults: z.number().optional(),\n })\n .transform(d => ({\n itemsPerPage: d.itemsPerPage,\n resources: d.Resources,\n schemas: d.schemas,\n startIndex: d.startIndex,\n totalResults: d.totalResults,\n }));\n\nexport const unmarshalNameSchema: z.ZodType<Name> = z\n .object({\n familyName: z.string().optional(),\n givenName: z.string().optional(),\n })\n .transform(d => ({\n familyName: d.familyName,\n givenName: d.givenName,\n }));\n\nexport const unmarshalPasswordAccessControlResponseSchema: z.ZodType<PasswordAccessControlResponse> =\n z\n .object({\n all_permissions: z\n .array(z.lazy(() => unmarshalPasswordPermissionSchema))\n .optional(),\n display_name: z.string().optional(),\n group_name: z.string().optional(),\n service_principal_name: z.string().optional(),\n user_name: z.string().optional(),\n })\n .transform(d => ({\n allPermissions: d.all_permissions,\n displayName: d.display_name,\n groupName: d.group_name,\n servicePrincipalName: d.service_principal_name,\n userName: d.user_name,\n }));\n\nexport const unmarshalPasswordPermissionSchema: z.ZodType<PasswordPermission> =\n z\n .object({\n inherited: z.boolean().optional(),\n inherited_from_object: z.array(z.string()).optional(),\n permission_level: z.string().optional(),\n })\n .transform(d => ({\n inherited: d.inherited,\n inheritedFromObject: d.inherited_from_object,\n permissionLevel: d.permission_level,\n }));\n\nexport const unmarshalPasswordPermissionsSchema: z.ZodType<PasswordPermissions> =\n z\n .object({\n access_control_list: z\n .array(z.lazy(() => unmarshalPasswordAccessControlResponseSchema))\n .optional(),\n object_id: z.string().optional(),\n object_type: z.string().optional(),\n })\n .transform(d => ({\n accessControlList: d.access_control_list,\n objectId: d.object_id,\n objectType: d.object_type,\n }));\n\nexport const unmarshalPasswordPermissionsDescriptionSchema: z.ZodType<PasswordPermissionsDescription> =\n z\n .object({\n description: z.string().optional(),\n permission_level: z.string().optional(),\n })\n .transform(d => ({\n description: d.description,\n permissionLevel: d.permission_level,\n }));\n\nexport const unmarshalResourceMetaSchema: z.ZodType<ResourceMeta> = z\n .object({\n resourceType: z.string().optional(),\n })\n .transform(d => ({\n resourceType: d.resourceType,\n }));\n\nexport const unmarshalServicePrincipalSchema: z.ZodType<ServicePrincipal> = z\n .object({\n active: z.boolean().optional(),\n applicationId: z.string().optional(),\n displayName: z.string().optional(),\n entitlements: z.array(z.lazy(() => unmarshalComplexValueSchema)).optional(),\n externalId: z.string().optional(),\n groups: z.array(z.lazy(() => unmarshalComplexValueSchema)).optional(),\n id: z.string().optional(),\n roles: z.array(z.lazy(() => unmarshalComplexValueSchema)).optional(),\n schemas: z.array(z.string()).optional(),\n })\n .transform(d => ({\n active: d.active,\n applicationId: d.applicationId,\n displayName: d.displayName,\n entitlements: d.entitlements,\n externalId: d.externalId,\n groups: d.groups,\n id: d.id,\n roles: d.roles,\n schemas: d.schemas,\n }));\n\nexport const unmarshalUserSchema: z.ZodType<User> = z\n .object({\n active: z.boolean().optional(),\n displayName: z.string().optional(),\n emails: z.array(z.lazy(() => unmarshalComplexValueSchema)).optional(),\n entitlements: z.array(z.lazy(() => unmarshalComplexValueSchema)).optional(),\n externalId: z.string().optional(),\n groups: z.array(z.lazy(() => unmarshalComplexValueSchema)).optional(),\n id: z.string().optional(),\n name: z.lazy(() => unmarshalNameSchema).optional(),\n roles: z.array(z.lazy(() => unmarshalComplexValueSchema)).optional(),\n schemas: z.array(z.string()).optional(),\n userName: z.string().optional(),\n })\n .transform(d => ({\n active: d.active,\n displayName: d.displayName,\n emails: d.emails,\n entitlements: d.entitlements,\n externalId: d.externalId,\n groups: d.groups,\n id: d.id,\n name: d.name,\n roles: d.roles,\n schemas: d.schemas,\n userName: d.userName,\n }));\n\nexport const marshalAccountComplexValueSchema: z.ZodType = z\n .object({\n display: z.string().optional(),\n primary: z.boolean().optional(),\n ref: z.string().optional(),\n type: z.string().optional(),\n value: z.string().optional(),\n })\n .transform(d => ({\n display: d.display,\n primary: d.primary,\n $ref: d.ref,\n type: d.type,\n value: d.value,\n }));\n\nexport const marshalAccountNameSchema: z.ZodType = z\n .object({\n familyName: z.string().optional(),\n givenName: z.string().optional(),\n })\n .transform(d => ({\n familyName: d.familyName,\n givenName: d.givenName,\n }));\n\nexport const marshalAccountPatchSchema: z.ZodType = z\n .object({\n op: z.string().optional(),\n path: z.string().optional(),\n value: jsonValueSchema.optional(),\n })\n .transform(d => ({\n op: d.op,\n path: d.path,\n value: d.value,\n }));\n\nexport const marshalAccountResourceMetaSchema: z.ZodType = z\n .object({\n resourceType: z.string().optional(),\n })\n .transform(d => ({\n resourceType: d.resourceType,\n }));\n\nexport const marshalComplexValueSchema: z.ZodType = z\n .object({\n display: z.string().optional(),\n primary: z.boolean().optional(),\n ref: z.string().optional(),\n type: z.string().optional(),\n value: z.string().optional(),\n })\n .transform(d => ({\n display: d.display,\n primary: d.primary,\n $ref: d.ref,\n type: d.type,\n value: d.value,\n }));\n\nexport const marshalCreateAccountGroupRequestSchema: z.ZodType = z\n .object({\n displayName: z.string().optional(),\n externalId: z.string().optional(),\n id: z.string().optional(),\n members: z.array(z.lazy(() => marshalAccountComplexValueSchema)).optional(),\n meta: z.lazy(() => marshalAccountResourceMetaSchema).optional(),\n roles: z.array(z.lazy(() => marshalAccountComplexValueSchema)).optional(),\n accountId: z.string().optional(),\n })\n .transform(d => ({\n displayName: d.displayName,\n externalId: d.externalId,\n id: d.id,\n members: d.members,\n meta: d.meta,\n roles: d.roles,\n account_id: d.accountId,\n }));\n\nexport const marshalCreateAccountServicePrincipalRequestSchema: z.ZodType = z\n .object({\n active: z.boolean().optional(),\n applicationId: z.string().optional(),\n displayName: z.string().optional(),\n externalId: z.string().optional(),\n id: z.string().optional(),\n roles: z.array(z.lazy(() => marshalAccountComplexValueSchema)).optional(),\n accountId: z.string().optional(),\n })\n .transform(d => ({\n active: d.active,\n applicationId: d.applicationId,\n displayName: d.displayName,\n externalId: d.externalId,\n id: d.id,\n roles: d.roles,\n account_id: d.accountId,\n }));\n\nexport const marshalCreateAccountUserRequestSchema: z.ZodType = z\n .object({\n active: z.boolean().optional(),\n displayName: z.string().optional(),\n emails: z.array(z.lazy(() => marshalAccountComplexValueSchema)).optional(),\n externalId: z.string().optional(),\n id: z.string().optional(),\n name: z.lazy(() => marshalAccountNameSchema).optional(),\n roles: z.array(z.lazy(() => marshalAccountComplexValueSchema)).optional(),\n userName: z.string().optional(),\n accountId: z.string().optional(),\n })\n .transform(d => ({\n active: d.active,\n displayName: d.displayName,\n emails: d.emails,\n externalId: d.externalId,\n id: d.id,\n name: d.name,\n roles: d.roles,\n userName: d.userName,\n account_id: d.accountId,\n }));\n\nexport const marshalCreateGroupRequestSchema: z.ZodType = z\n .object({\n displayName: z.string().optional(),\n entitlements: z.array(z.lazy(() => marshalComplexValueSchema)).optional(),\n externalId: z.string().optional(),\n groups: z.array(z.lazy(() => marshalComplexValueSchema)).optional(),\n id: z.string().optional(),\n members: z.array(z.lazy(() => marshalComplexValueSchema)).optional(),\n meta: z.lazy(() => marshalResourceMetaSchema).optional(),\n roles: z.array(z.lazy(() => marshalComplexValueSchema)).optional(),\n schemas: z.array(z.string()).optional(),\n })\n .transform(d => ({\n displayName: d.displayName,\n entitlements: d.entitlements,\n externalId: d.externalId,\n groups: d.groups,\n id: d.id,\n members: d.members,\n meta: d.meta,\n roles: d.roles,\n schemas: d.schemas,\n }));\n\nexport const marshalCreateServicePrincipalRequestSchema: z.ZodType = z\n .object({\n active: z.boolean().optional(),\n applicationId: z.string().optional(),\n displayName: z.string().optional(),\n entitlements: z.array(z.lazy(() => marshalComplexValueSchema)).optional(),\n externalId: z.string().optional(),\n groups: z.array(z.lazy(() => marshalComplexValueSchema)).optional(),\n id: z.string().optional(),\n roles: z.array(z.lazy(() => marshalComplexValueSchema)).optional(),\n schemas: z.array(z.string()).optional(),\n })\n .transform(d => ({\n active: d.active,\n applicationId: d.applicationId,\n displayName: d.displayName,\n entitlements: d.entitlements,\n externalId: d.externalId,\n groups: d.groups,\n id: d.id,\n roles: d.roles,\n schemas: d.schemas,\n }));\n\nexport const marshalCreateUserRequestSchema: z.ZodType = z\n .object({\n active: z.boolean().optional(),\n displayName: z.string().optional(),\n emails: z.array(z.lazy(() => marshalComplexValueSchema)).optional(),\n entitlements: z.array(z.lazy(() => marshalComplexValueSchema)).optional(),\n externalId: z.string().optional(),\n groups: z.array(z.lazy(() => marshalComplexValueSchema)).optional(),\n id: z.string().optional(),\n name: z.lazy(() => marshalNameSchema).optional(),\n roles: z.array(z.lazy(() => marshalComplexValueSchema)).optional(),\n schemas: z.array(z.string()).optional(),\n userName: z.string().optional(),\n })\n .transform(d => ({\n active: d.active,\n displayName: d.displayName,\n emails: d.emails,\n entitlements: d.entitlements,\n externalId: d.externalId,\n groups: d.groups,\n id: d.id,\n name: d.name,\n roles: d.roles,\n schemas: d.schemas,\n userName: d.userName,\n }));\n\nexport const marshalNameSchema: z.ZodType = z\n .object({\n familyName: z.string().optional(),\n givenName: z.string().optional(),\n })\n .transform(d => ({\n familyName: d.familyName,\n givenName: d.givenName,\n }));\n\nexport const marshalPasswordAccessControlRequestSchema: z.ZodType = z\n .object({\n groupName: z.string().optional(),\n permissionLevel: z.string().optional(),\n servicePrincipalName: z.string().optional(),\n userName: z.string().optional(),\n })\n .transform(d => ({\n group_name: d.groupName,\n permission_level: d.permissionLevel,\n service_principal_name: d.servicePrincipalName,\n user_name: d.userName,\n }));\n\nexport const marshalPasswordPermissionsRequestSchema: z.ZodType = z\n .object({\n accessControlList: z\n .array(z.lazy(() => marshalPasswordAccessControlRequestSchema))\n .optional(),\n })\n .transform(d => ({\n access_control_list: d.accessControlList,\n }));\n\nexport const marshalPatchSchema: z.ZodType = z\n .object({\n op: z.string().optional(),\n path: z.string().optional(),\n value: jsonValueSchema.optional(),\n })\n .transform(d => ({\n op: d.op,\n path: d.path,\n value: d.value,\n }));\n\nexport const marshalPatchAccountGroupRequestSchema: z.ZodType = z\n .object({\n id: z.string().optional(),\n operations: z.array(z.lazy(() => marshalAccountPatchSchema)).optional(),\n schemas: z.array(z.string()).optional(),\n accountId: z.string().optional(),\n })\n .transform(d => ({\n id: d.id,\n Operations: d.operations,\n schemas: d.schemas,\n account_id: d.accountId,\n }));\n\nexport const marshalPatchAccountServicePrincipalRequestSchema: z.ZodType = z\n .object({\n id: z.string().optional(),\n operations: z.array(z.lazy(() => marshalAccountPatchSchema)).optional(),\n schemas: z.array(z.string()).optional(),\n accountId: z.string().optional(),\n })\n .transform(d => ({\n id: d.id,\n Operations: d.operations,\n schemas: d.schemas,\n account_id: d.accountId,\n }));\n\nexport const marshalPatchAccountUserRequestSchema: z.ZodType = z\n .object({\n id: z.string().optional(),\n operations: z.array(z.lazy(() => marshalAccountPatchSchema)).optional(),\n schemas: z.array(z.string()).optional(),\n accountId: z.string().optional(),\n })\n .transform(d => ({\n id: d.id,\n Operations: d.operations,\n schemas: d.schemas,\n account_id: d.accountId,\n }));\n\nexport const marshalPatchGroupRequestSchema: z.ZodType = z\n .object({\n id: z.string().optional(),\n operations: z.array(z.lazy(() => marshalPatchSchema)).optional(),\n schemas: z.array(z.string()).optional(),\n })\n .transform(d => ({\n id: d.id,\n Operations: d.operations,\n schemas: d.schemas,\n }));\n\nexport const marshalPatchServicePrincipalRequestSchema: z.ZodType = z\n .object({\n id: z.string().optional(),\n operations: z.array(z.lazy(() => marshalPatchSchema)).optional(),\n schemas: z.array(z.string()).optional(),\n })\n .transform(d => ({\n id: d.id,\n Operations: d.operations,\n schemas: d.schemas,\n }));\n\nexport const marshalPatchUserRequestSchema: z.ZodType = z\n .object({\n id: z.string().optional(),\n operations: z.array(z.lazy(() => marshalPatchSchema)).optional(),\n schemas: z.array(z.string()).optional(),\n })\n .transform(d => ({\n id: d.id,\n Operations: d.operations,\n schemas: d.schemas,\n }));\n\nexport const marshalResourceMetaSchema: z.ZodType = z\n .object({\n resourceType: z.string().optional(),\n })\n .transform(d => ({\n resourceType: d.resourceType,\n }));\n\nexport const marshalUpdateAccountGroupRequestSchema: z.ZodType = z\n .object({\n displayName: z.string().optional(),\n externalId: z.string().optional(),\n id: z.string().optional(),\n members: z.array(z.lazy(() => marshalAccountComplexValueSchema)).optional(),\n meta: z.lazy(() => marshalAccountResourceMetaSchema).optional(),\n roles: z.array(z.lazy(() => marshalAccountComplexValueSchema)).optional(),\n accountId: z.string().optional(),\n })\n .transform(d => ({\n displayName: d.displayName,\n externalId: d.externalId,\n id: d.id,\n members: d.members,\n meta: d.meta,\n roles: d.roles,\n account_id: d.accountId,\n }));\n\nexport const marshalUpdateAccountServicePrincipalRequestSchema: z.ZodType = z\n .object({\n active: z.boolean().optional(),\n applicationId: z.string().optional(),\n displayName: z.string().optional(),\n externalId: z.string().optional(),\n id: z.string().optional(),\n roles: z.array(z.lazy(() => marshalAccountComplexValueSchema)).optional(),\n accountId: z.string().optional(),\n })\n .transform(d => ({\n active: d.active,\n applicationId: d.applicationId,\n displayName: d.displayName,\n externalId: d.externalId,\n id: d.id,\n roles: d.roles,\n account_id: d.accountId,\n }));\n\nexport const marshalUpdateAccountUserRequestSchema: z.ZodType = z\n .object({\n active: z.boolean().optional(),\n displayName: z.string().optional(),\n emails: z.array(z.lazy(() => marshalAccountComplexValueSchema)).optional(),\n externalId: z.string().optional(),\n id: z.string().optional(),\n name: z.lazy(() => marshalAccountNameSchema).optional(),\n roles: z.array(z.lazy(() => marshalAccountComplexValueSchema)).optional(),\n userName: z.string().optional(),\n accountId: z.string().optional(),\n })\n .transform(d => ({\n active: d.active,\n displayName: d.displayName,\n emails: d.emails,\n externalId: d.externalId,\n id: d.id,\n name: d.name,\n roles: d.roles,\n userName: d.userName,\n account_id: d.accountId,\n }));\n\nexport const marshalUpdateGroupRequestSchema: z.ZodType = z\n .object({\n displayName: z.string().optional(),\n entitlements: z.array(z.lazy(() => marshalComplexValueSchema)).optional(),\n externalId: z.string().optional(),\n groups: z.array(z.lazy(() => marshalComplexValueSchema)).optional(),\n id: z.string().optional(),\n members: z.array(z.lazy(() => marshalComplexValueSchema)).optional(),\n meta: z.lazy(() => marshalResourceMetaSchema).optional(),\n roles: z.array(z.lazy(() => marshalComplexValueSchema)).optional(),\n schemas: z.array(z.string()).optional(),\n })\n .transform(d => ({\n displayName: d.displayName,\n entitlements: d.entitlements,\n externalId: d.externalId,\n groups: d.groups,\n id: d.id,\n members: d.members,\n meta: d.meta,\n roles: d.roles,\n schemas: d.schemas,\n }));\n\nexport const marshalUpdateServicePrincipalRequestSchema: z.ZodType = z\n .object({\n active: z.boolean().optional(),\n applicationId: z.string().optional(),\n displayName: z.string().optional(),\n entitlements: z.array(z.lazy(() => marshalComplexValueSchema)).optional(),\n externalId: z.string().optional(),\n groups: z.array(z.lazy(() => marshalComplexValueSchema)).optional(),\n id: z.string().optional(),\n roles: z.array(z.lazy(() => marshalComplexValueSchema)).optional(),\n schemas: z.array(z.string()).optional(),\n })\n .transform(d => ({\n active: d.active,\n applicationId: d.applicationId,\n displayName: d.displayName,\n entitlements: d.entitlements,\n externalId: d.externalId,\n groups: d.groups,\n id: d.id,\n roles: d.roles,\n schemas: d.schemas,\n }));\n\nexport const marshalUpdateUserRequestSchema: z.ZodType = z\n .object({\n active: z.boolean().optional(),\n displayName: z.string().optional(),\n emails: z.array(z.lazy(() => marshalComplexValueSchema)).optional(),\n entitlements: z.array(z.lazy(() => marshalComplexValueSchema)).optional(),\n externalId: z.string().optional(),\n groups: z.array(z.lazy(() => marshalComplexValueSchema)).optional(),\n id: z.string().optional(),\n name: z.lazy(() => marshalNameSchema).optional(),\n roles: z.array(z.lazy(() => marshalComplexValueSchema)).optional(),\n schemas: z.array(z.string()).optional(),\n userName: z.string().optional(),\n })\n .transform(d => ({\n active: d.active,\n displayName: d.displayName,\n emails: d.emails,\n entitlements: d.entitlements,\n externalId: d.externalId,\n groups: d.groups,\n id: d.id,\n name: d.name,\n roles: d.roles,\n schemas: d.schemas,\n userName: d.userName,\n }));\n"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"model.js","names":[],"sources":["../../src/v1/model.ts"],"sourcesContent":["// Code generated from API definition by Databricks SDK Generator. DO NOT EDIT.\n\nimport type {JsonValue} from '@databricks/sdk-core/wkt';\nimport {z} from 'zod';\n\nconst jsonValueSchema: z.ZodType<JsonValue> = z.lazy(() =>\n z.union([\n z.null(),\n z.number(),\n z.string(),\n z.boolean(),\n z.record(z.string(), jsonValueSchema),\n z.array(jsonValueSchema),\n ])\n);\n\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const GetSortOrder = {\n GET_SORT_ORDER_UNSPECIFIED: 'GET_SORT_ORDER_UNSPECIFIED',\n ASCENDING: 'ascending',\n DESCENDING: 'descending',\n} as const;\nexport type GetSortOrder =\n | (typeof GetSortOrder)[keyof typeof GetSortOrder]\n | (string & {});\n\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const GroupSchema = {\n GROUP_SCHEMA_UNSPECIFIED: 'GROUP_SCHEMA_UNSPECIFIED',\n URN_IETF_PARAMS_SCIM_SCHEMAS_CORE_2_0_GROUP:\n 'urn:ietf:params:scim:schemas:core:2.0:Group',\n} as const;\nexport type GroupSchema =\n | (typeof GroupSchema)[keyof typeof GroupSchema]\n | (string & {});\n\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const ListResponseSchema = {\n LIST_RESPONSE_SCHEMA_UNSPECIFIED: 'LIST_RESPONSE_SCHEMA_UNSPECIFIED',\n URN_IETF_PARAMS_SCIM_API_MESSAGES_2_0_LIST_RESPONSE:\n 'urn:ietf:params:scim:api:messages:2.0:ListResponse',\n} as const;\nexport type ListResponseSchema =\n | (typeof ListResponseSchema)[keyof typeof ListResponseSchema]\n | (string & {});\n\n/** Type of patch operation. */\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const PatchOp = {\n PATCH_OP_UNSPECIFIED: 'PATCH_OP_UNSPECIFIED',\n ADD: 'add',\n REMOVE: 'remove',\n REPLACE: 'replace',\n} as const;\nexport type PatchOp = (typeof PatchOp)[keyof typeof PatchOp] | (string & {});\n\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const PatchSchema = {\n PATCH_SCHEMA_UNSPECIFIED: 'PATCH_SCHEMA_UNSPECIFIED',\n URN_IETF_PARAMS_SCIM_API_MESSAGES_2_0_PATCH_OP:\n 'urn:ietf:params:scim:api:messages:2.0:PatchOp',\n} as const;\nexport type PatchSchema =\n | (typeof PatchSchema)[keyof typeof PatchSchema]\n | (string & {});\n\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const ServicePrincipalSchema = {\n SERVICE_PRINCIPAL_SCHEMA_UNSPECIFIED: 'SERVICE_PRINCIPAL_SCHEMA_UNSPECIFIED',\n URN_IETF_PARAMS_SCIM_SCHEMAS_CORE_2_0_SERVICE_PRINCIPAL:\n 'urn:ietf:params:scim:schemas:core:2.0:ServicePrincipal',\n} as const;\nexport type ServicePrincipalSchema =\n | (typeof ServicePrincipalSchema)[keyof typeof ServicePrincipalSchema]\n | (string & {});\n\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const UserSchema = {\n USER_SCHEMA_UNSPECIFIED: 'USER_SCHEMA_UNSPECIFIED',\n URN_IETF_PARAMS_SCIM_SCHEMAS_CORE_2_0_USER:\n 'urn:ietf:params:scim:schemas:core:2.0:User',\n URN_IETF_PARAMS_SCIM_SCHEMAS_EXTENSION_WORKSPACE_2_0_USER:\n 'urn:ietf:params:scim:schemas:extension:workspace:2.0:User',\n} as const;\nexport type UserSchema =\n | (typeof UserSchema)[keyof typeof UserSchema]\n | (string & {});\n\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const AccountGetSortOrder_GetSortOrder = {\n GET_SORT_ORDER_UNSPECIFIED: 'GET_SORT_ORDER_UNSPECIFIED',\n ASCENDING: 'ascending',\n DESCENDING: 'descending',\n} as const;\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Proto-style nested enum name.\nexport type AccountGetSortOrder_GetSortOrder =\n | (typeof AccountGetSortOrder_GetSortOrder)[keyof typeof AccountGetSortOrder_GetSortOrder]\n | (string & {});\n\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const AccountListSort_Order = {\n ORDER_UNSPECIFIED: 'ORDER_UNSPECIFIED',\n ASCENDING: 'ascending',\n DESCENDING: 'descending',\n} as const;\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Proto-style nested enum name.\nexport type AccountListSort_Order =\n | (typeof AccountListSort_Order)[keyof typeof AccountListSort_Order]\n | (string & {});\n\n/** Type of patch operation. */\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const AccountPatchOp_PatchOp = {\n PATCH_OP_UNSPECIFIED: 'PATCH_OP_UNSPECIFIED',\n ADD: 'add',\n REMOVE: 'remove',\n REPLACE: 'replace',\n} as const;\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Proto-style nested enum name.\nexport type AccountPatchOp_PatchOp =\n | (typeof AccountPatchOp_PatchOp)[keyof typeof AccountPatchOp_PatchOp]\n | (string & {});\n\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const AccountPatchSchema_PatchSchema = {\n PATCH_SCHEMA_UNSPECIFIED: 'PATCH_SCHEMA_UNSPECIFIED',\n URN_IETF_PARAMS_SCIM_API_MESSAGES_2_0_PATCH_OP:\n 'urn:ietf:params:scim:api:messages:2.0:PatchOp',\n} as const;\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Proto-style nested enum name.\nexport type AccountPatchSchema_PatchSchema =\n | (typeof AccountPatchSchema_PatchSchema)[keyof typeof AccountPatchSchema_PatchSchema]\n | (string & {});\n\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const ListSort_Order = {\n ORDER_UNSPECIFIED: 'ORDER_UNSPECIFIED',\n ASCENDING: 'ascending',\n DESCENDING: 'descending',\n} as const;\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Proto-style nested enum name.\nexport type ListSort_Order =\n | (typeof ListSort_Order)[keyof typeof ListSort_Order]\n | (string & {});\n\n/** Permission level */\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const PasswordPermission_Level = {\n LEVEL_UNSPECIFIED: 'LEVEL_UNSPECIFIED',\n CAN_USE: 'CAN_USE',\n} as const;\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Proto-style nested enum name.\nexport type PasswordPermission_Level =\n | (typeof PasswordPermission_Level)[keyof typeof PasswordPermission_Level]\n | (string & {});\n\nexport interface AccountComplexValue {\n display?: string | undefined;\n primary?: boolean | undefined;\n ref?: string | undefined;\n type?: string | undefined;\n value?: string | undefined;\n}\n\n// eslint-disable-next-line @typescript-eslint/no-empty-object-type\nexport interface AccountGetSortOrder {}\n\nexport interface AccountGroup {\n /** String that represents a human-readable group name */\n displayName?: string | undefined;\n /** external_id should be unique for identifying groups */\n externalId?: string | undefined;\n /** <Databricks> group ID */\n id?: string | undefined;\n members?: AccountComplexValue[] | undefined;\n /** Container for the group identifier. Workspace local versus account. */\n meta?: AccountResourceMeta | undefined;\n /** Indicates if the group has the admin role. */\n roles?: AccountComplexValue[] | undefined;\n /** <Databricks> account ID */\n accountId?: string | undefined;\n}\n\n/**\n * ListSortOrder and GetSortOrder share enum values, which is not supported.\n * We use nesting as a workaround.\n */\n// eslint-disable-next-line @typescript-eslint/no-empty-object-type\nexport interface AccountListSort {}\n\nexport interface AccountName {\n /** Family name of the <Databricks> user. */\n familyName?: string | undefined;\n /** Given name of the <Databricks> user. */\n givenName?: string | undefined;\n}\n\nexport interface AccountPatch {\n /** Type of patch operation. */\n op?: AccountPatchOp_PatchOp | undefined;\n /** Selection of patch operation */\n path?: string | undefined;\n /** Value to modify */\n value?: JsonValue | undefined;\n}\n\n// eslint-disable-next-line @typescript-eslint/no-empty-object-type\nexport interface AccountPatchOp {}\n\n// eslint-disable-next-line @typescript-eslint/no-empty-object-type\nexport interface AccountPatchSchema {}\n\nexport interface AccountResourceMeta {\n /** Identifier for group type. Can be local workspace group (`WorkspaceGroup`) or account group (`Group`). */\n resourceType?: string | undefined;\n}\n\nexport interface AccountServicePrincipal {\n /** If this user is active */\n active?: boolean | undefined;\n /** UUID relating to the service principal */\n applicationId?: string | undefined;\n /** String that represents a concatenation of given and family names. */\n displayName?: string | undefined;\n externalId?: string | undefined;\n /** <Databricks> service principal ID. */\n id?: string | undefined;\n /** Indicates if the group has the admin role. */\n roles?: AccountComplexValue[] | undefined;\n /** <Databricks> account ID */\n accountId?: string | undefined;\n}\n\nexport interface AccountUser {\n /** If this user is active */\n active?: boolean | undefined;\n /** String that represents a concatenation of given and family names. For example `John Smith`. */\n displayName?: string | undefined;\n /** All the emails associated with the <Databricks> user. This attribute cannot be updated through the SCIM PATCH or PUT APIs; any supplied change is ignored. */\n emails?: AccountComplexValue[] | undefined;\n /** External ID is not currently supported. It is reserved for future use. */\n externalId?: string | undefined;\n /** <Databricks> user ID. */\n id?: string | undefined;\n name?: AccountName | undefined;\n /** Indicates if the group has the admin role. */\n roles?: AccountComplexValue[] | undefined;\n /** Email address of the <Databricks> user. This attribute cannot be updated through the SCIM PATCH or PUT APIs; any supplied change is ignored. */\n userName?: string | undefined;\n /** <Databricks> account ID */\n accountId?: string | undefined;\n}\n\nexport interface ComplexValue {\n display?: string | undefined;\n primary?: boolean | undefined;\n ref?: string | undefined;\n type?: string | undefined;\n value?: string | undefined;\n}\n\nexport interface CreateAccountGroupRequest {\n /** String that represents a human-readable group name */\n displayName?: string | undefined;\n externalId?: string | undefined;\n /** <Databricks> group ID */\n id?: string | undefined;\n members?: AccountComplexValue[] | undefined;\n /** Container for the group identifier. Workspace local versus account. */\n meta?: AccountResourceMeta | undefined;\n /** Indicates if the group has the admin role. */\n roles?: AccountComplexValue[] | undefined;\n /** <Databricks> account ID */\n accountId?: string | undefined;\n}\n\nexport interface CreateAccountServicePrincipalRequest {\n /** If this user is active */\n active?: boolean | undefined;\n /** UUID relating to the service principal */\n applicationId?: string | undefined;\n /** String that represents a concatenation of given and family names. */\n displayName?: string | undefined;\n externalId?: string | undefined;\n /** <Databricks> service principal ID. */\n id?: string | undefined;\n /** Indicates if the group has the admin role. */\n roles?: AccountComplexValue[] | undefined;\n /** <Databricks> account ID */\n accountId?: string | undefined;\n}\n\nexport interface CreateAccountUserRequest {\n /** If this user is active */\n active?: boolean | undefined;\n /** String that represents a concatenation of given and family names. For example `John Smith`. */\n displayName?: string | undefined;\n /** All the emails associated with the <Databricks> user. */\n emails?: AccountComplexValue[] | undefined;\n /** External ID is not currently supported. It is reserved for future use. */\n externalId?: string | undefined;\n /** <Databricks> user ID. */\n id?: string | undefined;\n name?: AccountName | undefined;\n /** Indicates if the group has the admin role. */\n roles?: AccountComplexValue[] | undefined;\n /** Email address of the <Databricks> user. */\n userName?: string | undefined;\n /** <Databricks> account ID */\n accountId?: string | undefined;\n}\n\nexport interface CreateGroupRequest {\n /** String that represents a human-readable group name */\n displayName?: string | undefined;\n /** Entitlements assigned to the group. See [assigning entitlements](https://docs.databricks.com/administration-guide/users-groups/index.html#assigning-entitlements) for a full list of supported values. */\n entitlements?: ComplexValue[] | undefined;\n externalId?: string | undefined;\n groups?: ComplexValue[] | undefined;\n /** <Databricks> group ID */\n id?: string | undefined;\n members?: ComplexValue[] | undefined;\n /** Container for the group identifier. Workspace local versus account. */\n meta?: ResourceMeta | undefined;\n /** Corresponds to AWS instance profile/arn role. */\n roles?: ComplexValue[] | undefined;\n /** The schema of the group. */\n schemas?: GroupSchema[] | undefined;\n}\n\nexport interface CreateServicePrincipalRequest {\n /** If this user is active */\n active?: boolean | undefined;\n /** UUID relating to the service principal */\n applicationId?: string | undefined;\n /** String that represents a concatenation of given and family names. */\n displayName?: string | undefined;\n /** Entitlements assigned to the service principal. See [assigning entitlements](https://docs.databricks.com/administration-guide/users-groups/index.html#assigning-entitlements) for a full list of supported values. */\n entitlements?: ComplexValue[] | undefined;\n externalId?: string | undefined;\n groups?: ComplexValue[] | undefined;\n /** <Databricks> service principal ID. */\n id?: string | undefined;\n /** Corresponds to AWS instance profile/arn role. */\n roles?: ComplexValue[] | undefined;\n /** The schema of the List response. */\n schemas?: ServicePrincipalSchema[] | undefined;\n}\n\nexport interface CreateUserRequest {\n /** If this user is active */\n active?: boolean | undefined;\n /** String that represents a concatenation of given and family names. For example `John Smith`. This field cannot be updated through the Workspace SCIM APIs when [identity federation is enabled](https://docs.databricks.com/administration-guide/users-groups/best-practices.html#enable-identity-federation). Use Account SCIM APIs to update `displayName`. */\n displayName?: string | undefined;\n /** All the emails associated with the <Databricks> user. */\n emails?: ComplexValue[] | undefined;\n /** Entitlements assigned to the user. See [assigning entitlements](https://docs.databricks.com/administration-guide/users-groups/index.html#assigning-entitlements) for a full list of supported values. */\n entitlements?: ComplexValue[] | undefined;\n /** External ID is not currently supported. It is reserved for future use. */\n externalId?: string | undefined;\n groups?: ComplexValue[] | undefined;\n /** <Databricks> user ID. */\n id?: string | undefined;\n name?: Name | undefined;\n /** Corresponds to AWS instance profile/arn role. */\n roles?: ComplexValue[] | undefined;\n /** The schema of the user. */\n schemas?: UserSchema[] | undefined;\n /** Email address of the <Databricks> user. */\n userName?: string | undefined;\n}\n\n/** Delete a group */\nexport interface DeleteAccountGroupRequest {\n /** Unique ID for a group in the <Databricks> account. */\n id?: string | undefined;\n /** <Databricks> account ID */\n accountId?: string | undefined;\n}\n\n/** Delete a service principal */\nexport interface DeleteAccountServicePrincipalRequest {\n /** Unique ID for a service principal in the <Databricks> account. */\n id?: string | undefined;\n /** <Databricks> account ID */\n accountId?: string | undefined;\n}\n\n/** Delete a user */\nexport interface DeleteAccountUserRequest {\n /** Unique ID for a user in the <Databricks> account. */\n id?: string | undefined;\n /** <Databricks> account ID */\n accountId?: string | undefined;\n}\n\n/** Delete a group */\nexport interface DeleteGroupRequest {\n /** Unique ID for a group in the <Databricks> workspace. */\n id?: string | undefined;\n}\n\n/** Delete a service principal */\nexport interface DeleteServicePrincipalRequest {\n /** Unique ID for a service principal in the <Databricks> workspace. */\n id?: string | undefined;\n}\n\n/** Delete a user */\nexport interface DeleteUserRequest {\n /** Unique ID for a user in the <Databricks> workspace. */\n id?: string | undefined;\n}\n\n/** Get group details */\nexport interface GetAccountGroupRequest {\n /** Unique ID for a group in the <Databricks> account. */\n id?: string | undefined;\n /** <Databricks> account ID */\n accountId?: string | undefined;\n}\n\n/** Get service principal details */\nexport interface GetAccountServicePrincipalRequest {\n /** Unique ID for a service principal in the <Databricks> account. */\n id?: string | undefined;\n /** <Databricks> account ID */\n accountId?: string | undefined;\n}\n\n/** Get user details */\nexport interface GetAccountUserRequest {\n /** Comma-separated list of attributes to return in response. */\n attributes?: string | undefined;\n /** Desired number of results per page. Default is 10000. */\n count?: number | undefined;\n /** Comma-separated list of attributes to exclude in response. */\n excludedAttributes?: string | undefined;\n /** Query by which the results have to be filtered. Supported operators are equals(`eq`), contains(`co`), starts with(`sw`) and not equals(`ne`). Additionally, simple expressions can be formed using logical operators - `and` and `or`. The [SCIM RFC](https://tools.ietf.org/html/rfc7644#section-3.4.2.2) has more details but we currently only support simple expressions. */\n filter?: string | undefined;\n /** Unique ID for a user in the <Databricks> account. */\n id?: string | undefined;\n /** Attribute to sort the results. Multi-part paths are supported. For example, `userName`, `name.givenName`, and `emails`. */\n sortBy?: string | undefined;\n /** The order to sort the results. */\n sortOrder?: AccountGetSortOrder_GetSortOrder | undefined;\n /** Specifies the index of the first result. First item is number 1. */\n startIndex?: number | undefined;\n /** <Databricks> account ID */\n accountId?: string | undefined;\n}\n\n/** Get group details */\nexport interface GetGroupRequest {\n /** Unique ID for a group in the <Databricks> workspace. */\n id?: string | undefined;\n}\n\n/** Get object permission levels */\n// eslint-disable-next-line @typescript-eslint/no-empty-object-type\nexport interface GetPasswordPermissionLevelsRequest {}\n\nexport interface GetPasswordPermissionLevelsResponse {\n /** Specific permission levels */\n permissionLevels?: PasswordPermissionsDescription[] | undefined;\n}\n\n// eslint-disable-next-line @typescript-eslint/no-empty-object-type\nexport interface GetPasswordPermissionsRequest {}\n\n/** Get service principal details */\nexport interface GetServicePrincipalRequest {\n /** Unique ID for a service principal in the <Databricks> workspace. */\n id?: string | undefined;\n}\n\n/** Get user details */\nexport interface GetUserRequest {\n /** Comma-separated list of attributes to return in response. */\n attributes?: string | undefined;\n /** Desired number of results per page. */\n count?: number | undefined;\n /** Comma-separated list of attributes to exclude in response. */\n excludedAttributes?: string | undefined;\n /** Query by which the results have to be filtered. Supported operators are equals(`eq`), contains(`co`), starts with(`sw`) and not equals(`ne`). Additionally, simple expressions can be formed using logical operators - `and` and `or`. The [SCIM RFC](https://tools.ietf.org/html/rfc7644#section-3.4.2.2) has more details but we currently only support simple expressions. */\n filter?: string | undefined;\n /** Unique ID for a user in the <Databricks> workspace. */\n id?: string | undefined;\n /** Attribute to sort the results. Multi-part paths are supported. For example, `userName`, `name.givenName`, and `emails`. */\n sortBy?: string | undefined;\n /** The order to sort the results. */\n sortOrder?: GetSortOrder | undefined;\n /** Specifies the index of the first result. First item is number 1. */\n startIndex?: number | undefined;\n}\n\nexport interface Group {\n /** String that represents a human-readable group name */\n displayName?: string | undefined;\n /** Entitlements assigned to the group. See [assigning entitlements](https://docs.databricks.com/administration-guide/users-groups/index.html#assigning-entitlements) for a full list of supported values. */\n entitlements?: ComplexValue[] | undefined;\n /** external_id should be unique for identifying groups */\n externalId?: string | undefined;\n groups?: ComplexValue[] | undefined;\n /** <Databricks> group ID */\n id?: string | undefined;\n members?: ComplexValue[] | undefined;\n /** Container for the group identifier. Workspace local versus account. */\n meta?: ResourceMeta | undefined;\n /** Corresponds to AWS instance profile/arn role. */\n roles?: ComplexValue[] | undefined;\n /** The schema of the group. */\n schemas?: GroupSchema[] | undefined;\n}\n\n/** List group details */\nexport interface ListAccountGroupsRequest {\n /** <Databricks> account ID */\n accountId?: string | undefined;\n /** Query by which the results have to be filtered. Supported operators are equals(`eq`), contains(`co`), starts with(`sw`) and not equals(`ne`). Additionally, simple expressions can be formed using logical operators - `and` and `or`. The [SCIM RFC](https://tools.ietf.org/html/rfc7644#section-3.4.2.2) has more details but we currently only support simple expressions. */\n filter?: string | undefined;\n /** Comma-separated list of attributes to return in response. */\n attributes?: string | undefined;\n /** Comma-separated list of attributes to exclude in response. */\n excludedAttributes?: string | undefined;\n /** Specifies the index of the first result. First item is number 1. */\n startIndex?: bigint | undefined;\n /** Desired number of results per page. Default is 10000. */\n count?: bigint | undefined;\n /** Attribute to sort the results. */\n sortBy?: string | undefined;\n /** The order to sort the results. */\n sortOrder?: AccountListSort_Order | undefined;\n}\n\nexport interface ListAccountGroupsResponse {\n /** Total results returned in the response. */\n itemsPerPage?: number | undefined;\n /** User objects returned in the response. */\n resources?: AccountGroup[] | undefined;\n /** Starting index of all the results that matched the request filters. First item is number 1. */\n startIndex?: bigint | undefined;\n /** Total results that match the request filters. */\n totalResults?: number | undefined;\n}\n\n/** List service principals */\nexport interface ListAccountServicePrincipalsRequest {\n /** Comma-separated list of attributes to return in response. */\n attributes?: string | undefined;\n /** Desired number of results per page. Default is 10000. */\n count?: bigint | undefined;\n /** Comma-separated list of attributes to exclude in response. */\n excludedAttributes?: string | undefined;\n /** Query by which the results have to be filtered. Supported operators are equals(`eq`), contains(`co`), starts with(`sw`) and not equals(`ne`). Additionally, simple expressions can be formed using logical operators - `and` and `or`. The [SCIM RFC](https://tools.ietf.org/html/rfc7644#section-3.4.2.2) has more details but we currently only support simple expressions. */\n filter?: string | undefined;\n /** Attribute to sort the results. */\n sortBy?: string | undefined;\n /** The order to sort the results. */\n sortOrder?: AccountListSort_Order | undefined;\n /** Specifies the index of the first result. First item is number 1. */\n startIndex?: bigint | undefined;\n /** <Databricks> account ID */\n accountId?: string | undefined;\n}\n\nexport interface ListAccountServicePrincipalsResponse {\n /** Total results returned in the response. */\n itemsPerPage?: number | undefined;\n /** User objects returned in the response. */\n resources?: AccountServicePrincipal[] | undefined;\n /** Starting index of all the results that matched the request filters. First item is number 1. */\n startIndex?: bigint | undefined;\n /** Total results that match the request filters. */\n totalResults?: number | undefined;\n}\n\n/** List users */\nexport interface ListAccountUsersRequest {\n /** Comma-separated list of attributes to return in response. */\n attributes?: string | undefined;\n /** Desired number of results per page. Default is 10000. */\n count?: bigint | undefined;\n /** Comma-separated list of attributes to exclude in response. */\n excludedAttributes?: string | undefined;\n /** Query by which the results have to be filtered. Supported operators are equals(`eq`), contains(`co`), starts with(`sw`) and not equals(`ne`). Additionally, simple expressions can be formed using logical operators - `and` and `or`. The [SCIM RFC](https://tools.ietf.org/html/rfc7644#section-3.4.2.2) has more details but we currently only support simple expressions. */\n filter?: string | undefined;\n /** Attribute to sort the results. Multi-part paths are supported. For example, `userName`, `name.givenName`, and `emails`. */\n sortBy?: string | undefined;\n /** The order to sort the results. */\n sortOrder?: AccountListSort_Order | undefined;\n /** Specifies the index of the first result. First item is number 1. */\n startIndex?: bigint | undefined;\n /** <Databricks> account ID */\n accountId?: string | undefined;\n}\n\nexport interface ListAccountUsersResponse {\n /** Total results returned in the response. */\n itemsPerPage?: number | undefined;\n /** User objects returned in the response. */\n resources?: AccountUser[] | undefined;\n /** Starting index of all the results that matched the request filters. First item is number 1. */\n startIndex?: bigint | undefined;\n /** Total results that match the request filters. */\n totalResults?: number | undefined;\n}\n\n/** List group details */\nexport interface ListGroupsRequest {\n /** Query by which the results have to be filtered. Supported operators are equals(`eq`), contains(`co`), starts with(`sw`) and not equals(`ne`). Additionally, simple expressions can be formed using logical operators - `and` and `or`. The [SCIM RFC](https://tools.ietf.org/html/rfc7644#section-3.4.2.2) has more details but we currently only support simple expressions. */\n filter?: string | undefined;\n /** Comma-separated list of attributes to return in response. */\n attributes?: string | undefined;\n /** Comma-separated list of attributes to exclude in response. */\n excludedAttributes?: string | undefined;\n /** Specifies the index of the first result. First item is number 1. */\n startIndex?: bigint | undefined;\n /** Desired number of results per page. */\n count?: bigint | undefined;\n /** Attribute to sort the results. */\n sortBy?: string | undefined;\n /** The order to sort the results. */\n sortOrder?: ListSort_Order | undefined;\n}\n\nexport interface ListGroupsResponse {\n /** Total results returned in the response. */\n itemsPerPage?: number | undefined;\n /** User objects returned in the response. */\n resources?: Group[] | undefined;\n /** The schema of the service principal. */\n schemas?: ListResponseSchema[] | undefined;\n /** Starting index of all the results that matched the request filters. First item is number 1. */\n startIndex?: bigint | undefined;\n /** Total results that match the request filters. */\n totalResults?: number | undefined;\n}\n\nexport interface ListServicePrincipalResponse {\n /** Total results returned in the response. */\n itemsPerPage?: number | undefined;\n /** User objects returned in the response. */\n resources?: ServicePrincipal[] | undefined;\n /** The schema of the List response. */\n schemas?: ListResponseSchema[] | undefined;\n /** Starting index of all the results that matched the request filters. First item is number 1. */\n startIndex?: bigint | undefined;\n /** Total results that match the request filters. */\n totalResults?: number | undefined;\n}\n\n/** List service principals */\nexport interface ListServicePrincipalsRequest {\n /** Comma-separated list of attributes to return in response. */\n attributes?: string | undefined;\n /** Desired number of results per page. */\n count?: bigint | undefined;\n /** Comma-separated list of attributes to exclude in response. */\n excludedAttributes?: string | undefined;\n /** Query by which the results have to be filtered. Supported operators are equals(`eq`), contains(`co`), starts with(`sw`) and not equals(`ne`). Additionally, simple expressions can be formed using logical operators - `and` and `or`. The [SCIM RFC](https://tools.ietf.org/html/rfc7644#section-3.4.2.2) has more details but we currently only support simple expressions. */\n filter?: string | undefined;\n /** Attribute to sort the results. */\n sortBy?: string | undefined;\n /** The order to sort the results. */\n sortOrder?: ListSort_Order | undefined;\n /** Specifies the index of the first result. First item is number 1. */\n startIndex?: bigint | undefined;\n}\n\n/**\n * ListSortOrder and GetSortOrder share enum values, which is not supported.\n * We use nesting as a workaround.\n */\n// eslint-disable-next-line @typescript-eslint/no-empty-object-type\nexport interface ListSort {}\n\n/** List users */\nexport interface ListUsersRequest {\n /** Comma-separated list of attributes to return in response. */\n attributes?: string | undefined;\n /** Desired number of results per page. */\n count?: bigint | undefined;\n /** Comma-separated list of attributes to exclude in response. */\n excludedAttributes?: string | undefined;\n /** Query by which the results have to be filtered. Supported operators are equals(`eq`), contains(`co`), starts with(`sw`) and not equals(`ne`). Additionally, simple expressions can be formed using logical operators - `and` and `or`. The [SCIM RFC](https://tools.ietf.org/html/rfc7644#section-3.4.2.2) has more details but we currently only support simple expressions. */\n filter?: string | undefined;\n /** Attribute to sort the results. Multi-part paths are supported. For example, `userName`, `name.givenName`, and `emails`. */\n sortBy?: string | undefined;\n /** The order to sort the results. */\n sortOrder?: ListSort_Order | undefined;\n /** Specifies the index of the first result. First item is number 1. */\n startIndex?: bigint | undefined;\n}\n\nexport interface ListUsersResponse {\n /** Total results returned in the response. */\n itemsPerPage?: number | undefined;\n /** User objects returned in the response. */\n resources?: User[] | undefined;\n /** The schema of the List response. */\n schemas?: ListResponseSchema[] | undefined;\n /** Starting index of all the results that matched the request filters. First item is number 1. */\n startIndex?: bigint | undefined;\n /** Total results that match the request filters. */\n totalResults?: number | undefined;\n}\n\nexport interface MeRequest {\n /** Comma-separated list of attributes to return in response. */\n attributes?: string | undefined;\n /** Comma-separated list of attributes to exclude in response. */\n excludedAttributes?: string | undefined;\n}\n\nexport interface Name {\n /** Family name of the <Databricks> user. */\n familyName?: string | undefined;\n /** Given name of the <Databricks> user. */\n givenName?: string | undefined;\n}\n\nexport interface PasswordAccessControlRequest {\n /** name of the group */\n groupName?: string | undefined;\n /** Permission level */\n permissionLevel?: PasswordPermission_Level | undefined;\n /** application ID of a service principal */\n servicePrincipalName?: string | undefined;\n /** name of the user */\n userName?: string | undefined;\n}\n\nexport interface PasswordAccessControlResponse {\n /** All permissions. */\n allPermissions?: PasswordPermission[] | undefined;\n /** Display name of the user or service principal. */\n displayName?: string | undefined;\n /** name of the group */\n groupName?: string | undefined;\n /** Name of the service principal. */\n servicePrincipalName?: string | undefined;\n /** name of the user */\n userName?: string | undefined;\n}\n\nexport interface PasswordPermission {\n inherited?: boolean | undefined;\n inheritedFromObject?: string[] | undefined;\n /** Permission level */\n permissionLevel?: PasswordPermission_Level | undefined;\n}\n\nexport interface PasswordPermissions {\n accessControlList?: PasswordAccessControlResponse[] | undefined;\n objectId?: string | undefined;\n objectType?: string | undefined;\n}\n\nexport interface PasswordPermissionsDescription {\n description?: string | undefined;\n /** Permission level */\n permissionLevel?: PasswordPermission_Level | undefined;\n}\n\nexport interface PasswordPermissionsRequest {\n accessControlList?: PasswordAccessControlRequest[] | undefined;\n}\n\nexport interface Patch {\n /** Type of patch operation. */\n op?: PatchOp | undefined;\n /** Selection of patch operation */\n path?: string | undefined;\n /** Value to modify */\n value?: JsonValue | undefined;\n}\n\nexport interface PatchAccountGroupRequest {\n /** Unique ID in the <Databricks> workspace. */\n id?: string | undefined;\n operations?: AccountPatch[] | undefined;\n /** The schema of the patch request. Must be [\"urn:ietf:params:scim:api:messages:2.0:PatchOp\"]. */\n schemas?: AccountPatchSchema_PatchSchema[] | undefined;\n /** <Databricks> account ID */\n accountId?: string | undefined;\n}\n\nexport interface PatchAccountServicePrincipalRequest {\n /** Unique ID in the <Databricks> workspace. */\n id?: string | undefined;\n operations?: AccountPatch[] | undefined;\n /** The schema of the patch request. Must be [\"urn:ietf:params:scim:api:messages:2.0:PatchOp\"]. */\n schemas?: AccountPatchSchema_PatchSchema[] | undefined;\n /** <Databricks> account ID */\n accountId?: string | undefined;\n}\n\nexport interface PatchAccountUserRequest {\n /** Unique ID in the <Databricks> workspace. */\n id?: string | undefined;\n operations?: AccountPatch[] | undefined;\n /** The schema of the patch request. Must be [\"urn:ietf:params:scim:api:messages:2.0:PatchOp\"]. */\n schemas?: AccountPatchSchema_PatchSchema[] | undefined;\n /** <Databricks> account ID */\n accountId?: string | undefined;\n}\n\nexport interface PatchGroupRequest {\n /** Unique ID in the <Databricks> workspace. */\n id?: string | undefined;\n operations?: Patch[] | undefined;\n /** The schema of the patch request. Must be [\"urn:ietf:params:scim:api:messages:2.0:PatchOp\"]. */\n schemas?: PatchSchema[] | undefined;\n}\n\nexport interface PatchServicePrincipalRequest {\n /** Unique ID in the <Databricks> workspace. */\n id?: string | undefined;\n operations?: Patch[] | undefined;\n /** The schema of the patch request. Must be [\"urn:ietf:params:scim:api:messages:2.0:PatchOp\"]. */\n schemas?: PatchSchema[] | undefined;\n}\n\nexport interface PatchUserRequest {\n /** Unique ID in the <Databricks> workspace. */\n id?: string | undefined;\n operations?: Patch[] | undefined;\n /** The schema of the patch request. Must be [\"urn:ietf:params:scim:api:messages:2.0:PatchOp\"]. */\n schemas?: PatchSchema[] | undefined;\n}\n\nexport interface ResourceMeta {\n /** Identifier for group type. Can be local workspace group (`WorkspaceGroup`) or account group (`Group`). */\n resourceType?: string | undefined;\n}\n\nexport interface ServicePrincipal {\n /** If this user is active */\n active?: boolean | undefined;\n /** UUID relating to the service principal */\n applicationId?: string | undefined;\n /** String that represents a concatenation of given and family names. */\n displayName?: string | undefined;\n /** Entitlements assigned to the service principal. See [assigning entitlements](https://docs.databricks.com/administration-guide/users-groups/index.html#assigning-entitlements) for a full list of supported values. */\n entitlements?: ComplexValue[] | undefined;\n externalId?: string | undefined;\n groups?: ComplexValue[] | undefined;\n /** <Databricks> service principal ID. */\n id?: string | undefined;\n /** Corresponds to AWS instance profile/arn role. */\n roles?: ComplexValue[] | undefined;\n /** The schema of the List response. */\n schemas?: ServicePrincipalSchema[] | undefined;\n}\n\nexport interface UpdateAccountGroupRequest {\n /** String that represents a human-readable group name */\n displayName?: string | undefined;\n externalId?: string | undefined;\n /** <Databricks> group ID */\n id?: string | undefined;\n members?: AccountComplexValue[] | undefined;\n /** Container for the group identifier. Workspace local versus account. */\n meta?: AccountResourceMeta | undefined;\n /** Indicates if the group has the admin role. */\n roles?: AccountComplexValue[] | undefined;\n /** <Databricks> account ID */\n accountId?: string | undefined;\n}\n\nexport interface UpdateAccountServicePrincipalRequest {\n /** If this user is active */\n active?: boolean | undefined;\n /** UUID relating to the service principal */\n applicationId?: string | undefined;\n /** String that represents a concatenation of given and family names. */\n displayName?: string | undefined;\n externalId?: string | undefined;\n /** <Databricks> service principal ID. */\n id?: string | undefined;\n /** Indicates if the group has the admin role. */\n roles?: AccountComplexValue[] | undefined;\n /** <Databricks> account ID */\n accountId?: string | undefined;\n}\n\nexport interface UpdateAccountUserRequest {\n /** If this user is active */\n active?: boolean | undefined;\n /** String that represents a concatenation of given and family names. For example `John Smith`. */\n displayName?: string | undefined;\n /** All the emails associated with the <Databricks> user. This attribute cannot be updated through the SCIM PATCH or PUT APIs; any supplied change is ignored. */\n emails?: AccountComplexValue[] | undefined;\n /** External ID is not currently supported. It is reserved for future use. */\n externalId?: string | undefined;\n /** <Databricks> user ID. */\n id?: string | undefined;\n name?: AccountName | undefined;\n /** Indicates if the group has the admin role. */\n roles?: AccountComplexValue[] | undefined;\n /** Email address of the <Databricks> user. This attribute cannot be updated through the SCIM PATCH or PUT APIs; any supplied change is ignored. */\n userName?: string | undefined;\n /** <Databricks> account ID */\n accountId?: string | undefined;\n}\n\nexport interface UpdateGroupRequest {\n /** String that represents a human-readable group name */\n displayName?: string | undefined;\n /** Entitlements assigned to the group. See [assigning entitlements](https://docs.databricks.com/administration-guide/users-groups/index.html#assigning-entitlements) for a full list of supported values. */\n entitlements?: ComplexValue[] | undefined;\n externalId?: string | undefined;\n groups?: ComplexValue[] | undefined;\n /** <Databricks> group ID */\n id?: string | undefined;\n members?: ComplexValue[] | undefined;\n /** Container for the group identifier. Workspace local versus account. */\n meta?: ResourceMeta | undefined;\n /** Corresponds to AWS instance profile/arn role. */\n roles?: ComplexValue[] | undefined;\n /** The schema of the group. */\n schemas?: GroupSchema[] | undefined;\n}\n\nexport interface UpdateServicePrincipalRequest {\n /** If this user is active */\n active?: boolean | undefined;\n /** UUID relating to the service principal */\n applicationId?: string | undefined;\n /** String that represents a concatenation of given and family names. */\n displayName?: string | undefined;\n /** Entitlements assigned to the service principal. See [assigning entitlements](https://docs.databricks.com/administration-guide/users-groups/index.html#assigning-entitlements) for a full list of supported values. */\n entitlements?: ComplexValue[] | undefined;\n externalId?: string | undefined;\n groups?: ComplexValue[] | undefined;\n /** <Databricks> service principal ID. */\n id?: string | undefined;\n /** Corresponds to AWS instance profile/arn role. */\n roles?: ComplexValue[] | undefined;\n /** The schema of the List response. */\n schemas?: ServicePrincipalSchema[] | undefined;\n}\n\nexport interface UpdateUserRequest {\n /** If this user is active */\n active?: boolean | undefined;\n /** String that represents a concatenation of given and family names. For example `John Smith`. This field cannot be updated through the Workspace SCIM APIs when [identity federation is enabled](https://docs.databricks.com/administration-guide/users-groups/best-practices.html#enable-identity-federation). Use Account SCIM APIs to update `displayName`. */\n displayName?: string | undefined;\n /** All the emails associated with the <Databricks> user. This attribute cannot be updated through the SCIM PATCH or PUT APIs; any supplied change is ignored. */\n emails?: ComplexValue[] | undefined;\n /** Entitlements assigned to the user. See [assigning entitlements](https://docs.databricks.com/administration-guide/users-groups/index.html#assigning-entitlements) for a full list of supported values. */\n entitlements?: ComplexValue[] | undefined;\n /** External ID is not currently supported. It is reserved for future use. */\n externalId?: string | undefined;\n groups?: ComplexValue[] | undefined;\n /** <Databricks> user ID. */\n id?: string | undefined;\n name?: Name | undefined;\n /** Corresponds to AWS instance profile/arn role. */\n roles?: ComplexValue[] | undefined;\n /** The schema of the user. */\n schemas?: UserSchema[] | undefined;\n /** Email address of the <Databricks> user. This attribute cannot be updated through the SCIM PATCH or PUT APIs; any supplied change is ignored. */\n userName?: string | undefined;\n}\n\nexport interface User {\n /** If this user is active */\n active?: boolean | undefined;\n /** String that represents a concatenation of given and family names. For example `John Smith`. This field cannot be updated through the Workspace SCIM APIs when [identity federation is enabled](https://docs.databricks.com/administration-guide/users-groups/best-practices.html#enable-identity-federation). Use Account SCIM APIs to update `displayName`. */\n displayName?: string | undefined;\n /** All the emails associated with the <Databricks> user. This attribute cannot be updated through the SCIM PATCH or PUT APIs; any supplied change is ignored. */\n emails?: ComplexValue[] | undefined;\n /** Entitlements assigned to the user. See [assigning entitlements](https://docs.databricks.com/administration-guide/users-groups/index.html#assigning-entitlements) for a full list of supported values. */\n entitlements?: ComplexValue[] | undefined;\n /** External ID is not currently supported. It is reserved for future use. */\n externalId?: string | undefined;\n groups?: ComplexValue[] | undefined;\n /** <Databricks> user ID. */\n id?: string | undefined;\n name?: Name | undefined;\n /** Corresponds to AWS instance profile/arn role. */\n roles?: ComplexValue[] | undefined;\n /** The schema of the user. */\n schemas?: UserSchema[] | undefined;\n /** Email address of the <Databricks> user. This attribute cannot be updated through the SCIM PATCH or PUT APIs; any supplied change is ignored. */\n userName?: string | undefined;\n}\n\nexport const unmarshalAccountComplexValueSchema: z.ZodType<AccountComplexValue> =\n z\n .object({\n display: z.string().optional(),\n primary: z.boolean().optional(),\n $ref: z.string().optional(),\n type: z.string().optional(),\n value: z.string().optional(),\n })\n .transform(d => ({\n display: d.display,\n primary: d.primary,\n ref: d.$ref,\n type: d.type,\n value: d.value,\n }));\n\nexport const unmarshalAccountGroupSchema: z.ZodType<AccountGroup> = z\n .object({\n displayName: z.string().optional(),\n externalId: z.string().optional(),\n id: z.string().optional(),\n members: z\n .array(z.lazy(() => unmarshalAccountComplexValueSchema))\n .optional(),\n meta: z.lazy(() => unmarshalAccountResourceMetaSchema).optional(),\n roles: z.array(z.lazy(() => unmarshalAccountComplexValueSchema)).optional(),\n account_id: z.string().optional(),\n })\n .transform(d => ({\n displayName: d.displayName,\n externalId: d.externalId,\n id: d.id,\n members: d.members,\n meta: d.meta,\n roles: d.roles,\n accountId: d.account_id,\n }));\n\nexport const unmarshalAccountNameSchema: z.ZodType<AccountName> = z\n .object({\n familyName: z.string().optional(),\n givenName: z.string().optional(),\n })\n .transform(d => ({\n familyName: d.familyName,\n givenName: d.givenName,\n }));\n\nexport const unmarshalAccountResourceMetaSchema: z.ZodType<AccountResourceMeta> =\n z\n .object({\n resourceType: z.string().optional(),\n })\n .transform(d => ({\n resourceType: d.resourceType,\n }));\n\nexport const unmarshalAccountServicePrincipalSchema: z.ZodType<AccountServicePrincipal> =\n z\n .object({\n active: z.boolean().optional(),\n applicationId: z.string().optional(),\n displayName: z.string().optional(),\n externalId: z.string().optional(),\n id: z.string().optional(),\n roles: z\n .array(z.lazy(() => unmarshalAccountComplexValueSchema))\n .optional(),\n account_id: z.string().optional(),\n })\n .transform(d => ({\n active: d.active,\n applicationId: d.applicationId,\n displayName: d.displayName,\n externalId: d.externalId,\n id: d.id,\n roles: d.roles,\n accountId: d.account_id,\n }));\n\nexport const unmarshalAccountUserSchema: z.ZodType<AccountUser> = z\n .object({\n active: z.boolean().optional(),\n displayName: z.string().optional(),\n emails: z\n .array(z.lazy(() => unmarshalAccountComplexValueSchema))\n .optional(),\n externalId: z.string().optional(),\n id: z.string().optional(),\n name: z.lazy(() => unmarshalAccountNameSchema).optional(),\n roles: z.array(z.lazy(() => unmarshalAccountComplexValueSchema)).optional(),\n userName: z.string().optional(),\n account_id: z.string().optional(),\n })\n .transform(d => ({\n active: d.active,\n displayName: d.displayName,\n emails: d.emails,\n externalId: d.externalId,\n id: d.id,\n name: d.name,\n roles: d.roles,\n userName: d.userName,\n accountId: d.account_id,\n }));\n\nexport const unmarshalComplexValueSchema: z.ZodType<ComplexValue> = z\n .object({\n display: z.string().optional(),\n primary: z.boolean().optional(),\n $ref: z.string().optional(),\n type: z.string().optional(),\n value: z.string().optional(),\n })\n .transform(d => ({\n display: d.display,\n primary: d.primary,\n ref: d.$ref,\n type: d.type,\n value: d.value,\n }));\n\nexport const unmarshalGetPasswordPermissionLevelsResponseSchema: z.ZodType<GetPasswordPermissionLevelsResponse> =\n z\n .object({\n permission_levels: z\n .array(z.lazy(() => unmarshalPasswordPermissionsDescriptionSchema))\n .optional(),\n })\n .transform(d => ({\n permissionLevels: d.permission_levels,\n }));\n\nexport const unmarshalGroupSchema: z.ZodType<Group> = z\n .object({\n displayName: z.string().optional(),\n entitlements: z.array(z.lazy(() => unmarshalComplexValueSchema)).optional(),\n externalId: z.string().optional(),\n groups: z.array(z.lazy(() => unmarshalComplexValueSchema)).optional(),\n id: z.string().optional(),\n members: z.array(z.lazy(() => unmarshalComplexValueSchema)).optional(),\n meta: z.lazy(() => unmarshalResourceMetaSchema).optional(),\n roles: z.array(z.lazy(() => unmarshalComplexValueSchema)).optional(),\n schemas: z.array(z.string()).optional(),\n })\n .transform(d => ({\n displayName: d.displayName,\n entitlements: d.entitlements,\n externalId: d.externalId,\n groups: d.groups,\n id: d.id,\n members: d.members,\n meta: d.meta,\n roles: d.roles,\n schemas: d.schemas,\n }));\n\nexport const unmarshalListAccountGroupsResponseSchema: z.ZodType<ListAccountGroupsResponse> =\n z\n .object({\n itemsPerPage: z.number().optional(),\n Resources: z.array(z.lazy(() => unmarshalAccountGroupSchema)).optional(),\n startIndex: z\n .union([z.number(), z.bigint(), z.string()])\n .transform(v => BigInt(v))\n .optional(),\n totalResults: z.number().optional(),\n })\n .transform(d => ({\n itemsPerPage: d.itemsPerPage,\n resources: d.Resources,\n startIndex: d.startIndex,\n totalResults: d.totalResults,\n }));\n\nexport const unmarshalListAccountServicePrincipalsResponseSchema: z.ZodType<ListAccountServicePrincipalsResponse> =\n z\n .object({\n itemsPerPage: z.number().optional(),\n Resources: z\n .array(z.lazy(() => unmarshalAccountServicePrincipalSchema))\n .optional(),\n startIndex: z\n .union([z.number(), z.bigint(), z.string()])\n .transform(v => BigInt(v))\n .optional(),\n totalResults: z.number().optional(),\n })\n .transform(d => ({\n itemsPerPage: d.itemsPerPage,\n resources: d.Resources,\n startIndex: d.startIndex,\n totalResults: d.totalResults,\n }));\n\nexport const unmarshalListAccountUsersResponseSchema: z.ZodType<ListAccountUsersResponse> =\n z\n .object({\n itemsPerPage: z.number().optional(),\n Resources: z.array(z.lazy(() => unmarshalAccountUserSchema)).optional(),\n startIndex: z\n .union([z.number(), z.bigint(), z.string()])\n .transform(v => BigInt(v))\n .optional(),\n totalResults: z.number().optional(),\n })\n .transform(d => ({\n itemsPerPage: d.itemsPerPage,\n resources: d.Resources,\n startIndex: d.startIndex,\n totalResults: d.totalResults,\n }));\n\nexport const unmarshalListGroupsResponseSchema: z.ZodType<ListGroupsResponse> =\n z\n .object({\n itemsPerPage: z.number().optional(),\n Resources: z.array(z.lazy(() => unmarshalGroupSchema)).optional(),\n schemas: z.array(z.string()).optional(),\n startIndex: z\n .union([z.number(), z.bigint(), z.string()])\n .transform(v => BigInt(v))\n .optional(),\n totalResults: z.number().optional(),\n })\n .transform(d => ({\n itemsPerPage: d.itemsPerPage,\n resources: d.Resources,\n schemas: d.schemas,\n startIndex: d.startIndex,\n totalResults: d.totalResults,\n }));\n\nexport const unmarshalListServicePrincipalResponseSchema: z.ZodType<ListServicePrincipalResponse> =\n z\n .object({\n itemsPerPage: z.number().optional(),\n Resources: z\n .array(z.lazy(() => unmarshalServicePrincipalSchema))\n .optional(),\n schemas: z.array(z.string()).optional(),\n startIndex: z\n .union([z.number(), z.bigint(), z.string()])\n .transform(v => BigInt(v))\n .optional(),\n totalResults: z.number().optional(),\n })\n .transform(d => ({\n itemsPerPage: d.itemsPerPage,\n resources: d.Resources,\n schemas: d.schemas,\n startIndex: d.startIndex,\n totalResults: d.totalResults,\n }));\n\nexport const unmarshalListUsersResponseSchema: z.ZodType<ListUsersResponse> = z\n .object({\n itemsPerPage: z.number().optional(),\n Resources: z.array(z.lazy(() => unmarshalUserSchema)).optional(),\n schemas: z.array(z.string()).optional(),\n startIndex: z\n .union([z.number(), z.bigint(), z.string()])\n .transform(v => BigInt(v))\n .optional(),\n totalResults: z.number().optional(),\n })\n .transform(d => ({\n itemsPerPage: d.itemsPerPage,\n resources: d.Resources,\n schemas: d.schemas,\n startIndex: d.startIndex,\n totalResults: d.totalResults,\n }));\n\nexport const unmarshalNameSchema: z.ZodType<Name> = z\n .object({\n familyName: z.string().optional(),\n givenName: z.string().optional(),\n })\n .transform(d => ({\n familyName: d.familyName,\n givenName: d.givenName,\n }));\n\nexport const unmarshalPasswordAccessControlResponseSchema: z.ZodType<PasswordAccessControlResponse> =\n z\n .object({\n all_permissions: z\n .array(z.lazy(() => unmarshalPasswordPermissionSchema))\n .optional(),\n display_name: z.string().optional(),\n group_name: z.string().optional(),\n service_principal_name: z.string().optional(),\n user_name: z.string().optional(),\n })\n .transform(d => ({\n allPermissions: d.all_permissions,\n displayName: d.display_name,\n groupName: d.group_name,\n servicePrincipalName: d.service_principal_name,\n userName: d.user_name,\n }));\n\nexport const unmarshalPasswordPermissionSchema: z.ZodType<PasswordPermission> =\n z\n .object({\n inherited: z.boolean().optional(),\n inherited_from_object: z.array(z.string()).optional(),\n permission_level: z.string().optional(),\n })\n .transform(d => ({\n inherited: d.inherited,\n inheritedFromObject: d.inherited_from_object,\n permissionLevel: d.permission_level,\n }));\n\nexport const unmarshalPasswordPermissionsSchema: z.ZodType<PasswordPermissions> =\n z\n .object({\n access_control_list: z\n .array(z.lazy(() => unmarshalPasswordAccessControlResponseSchema))\n .optional(),\n object_id: z.string().optional(),\n object_type: z.string().optional(),\n })\n .transform(d => ({\n accessControlList: d.access_control_list,\n objectId: d.object_id,\n objectType: d.object_type,\n }));\n\nexport const unmarshalPasswordPermissionsDescriptionSchema: z.ZodType<PasswordPermissionsDescription> =\n z\n .object({\n description: z.string().optional(),\n permission_level: z.string().optional(),\n })\n .transform(d => ({\n description: d.description,\n permissionLevel: d.permission_level,\n }));\n\nexport const unmarshalResourceMetaSchema: z.ZodType<ResourceMeta> = z\n .object({\n resourceType: z.string().optional(),\n })\n .transform(d => ({\n resourceType: d.resourceType,\n }));\n\nexport const unmarshalServicePrincipalSchema: z.ZodType<ServicePrincipal> = z\n .object({\n active: z.boolean().optional(),\n applicationId: z.string().optional(),\n displayName: z.string().optional(),\n entitlements: z.array(z.lazy(() => unmarshalComplexValueSchema)).optional(),\n externalId: z.string().optional(),\n groups: z.array(z.lazy(() => unmarshalComplexValueSchema)).optional(),\n id: z.string().optional(),\n roles: z.array(z.lazy(() => unmarshalComplexValueSchema)).optional(),\n schemas: z.array(z.string()).optional(),\n })\n .transform(d => ({\n active: d.active,\n applicationId: d.applicationId,\n displayName: d.displayName,\n entitlements: d.entitlements,\n externalId: d.externalId,\n groups: d.groups,\n id: d.id,\n roles: d.roles,\n schemas: d.schemas,\n }));\n\nexport const unmarshalUserSchema: z.ZodType<User> = z\n .object({\n active: z.boolean().optional(),\n displayName: z.string().optional(),\n emails: z.array(z.lazy(() => unmarshalComplexValueSchema)).optional(),\n entitlements: z.array(z.lazy(() => unmarshalComplexValueSchema)).optional(),\n externalId: z.string().optional(),\n groups: z.array(z.lazy(() => unmarshalComplexValueSchema)).optional(),\n id: z.string().optional(),\n name: z.lazy(() => unmarshalNameSchema).optional(),\n roles: z.array(z.lazy(() => unmarshalComplexValueSchema)).optional(),\n schemas: z.array(z.string()).optional(),\n userName: z.string().optional(),\n })\n .transform(d => ({\n active: d.active,\n displayName: d.displayName,\n emails: d.emails,\n entitlements: d.entitlements,\n externalId: d.externalId,\n groups: d.groups,\n id: d.id,\n name: d.name,\n roles: d.roles,\n schemas: d.schemas,\n userName: d.userName,\n }));\n\nexport const marshalAccountComplexValueSchema: z.ZodType = z\n .object({\n display: z.string().optional(),\n primary: z.boolean().optional(),\n ref: z.string().optional(),\n type: z.string().optional(),\n value: z.string().optional(),\n })\n .transform(d => ({\n display: d.display,\n primary: d.primary,\n $ref: d.ref,\n type: d.type,\n value: d.value,\n }));\n\nexport const marshalAccountNameSchema: z.ZodType = z\n .object({\n familyName: z.string().optional(),\n givenName: z.string().optional(),\n })\n .transform(d => ({\n familyName: d.familyName,\n givenName: d.givenName,\n }));\n\nexport const marshalAccountPatchSchema: z.ZodType = z\n .object({\n op: z.string().optional(),\n path: z.string().optional(),\n value: jsonValueSchema.optional(),\n })\n .transform(d => ({\n op: d.op,\n path: d.path,\n value: d.value,\n }));\n\nexport const marshalAccountResourceMetaSchema: z.ZodType = z\n .object({\n resourceType: z.string().optional(),\n })\n .transform(d => ({\n resourceType: d.resourceType,\n }));\n\nexport const marshalComplexValueSchema: z.ZodType = z\n .object({\n display: z.string().optional(),\n primary: z.boolean().optional(),\n ref: z.string().optional(),\n type: z.string().optional(),\n value: z.string().optional(),\n })\n .transform(d => ({\n display: d.display,\n primary: d.primary,\n $ref: d.ref,\n type: d.type,\n value: d.value,\n }));\n\nexport const marshalCreateAccountGroupRequestSchema: z.ZodType = z\n .object({\n displayName: z.string().optional(),\n externalId: z.string().optional(),\n id: z.string().optional(),\n members: z.array(z.lazy(() => marshalAccountComplexValueSchema)).optional(),\n meta: z.lazy(() => marshalAccountResourceMetaSchema).optional(),\n roles: z.array(z.lazy(() => marshalAccountComplexValueSchema)).optional(),\n accountId: z.string().optional(),\n })\n .transform(d => ({\n displayName: d.displayName,\n externalId: d.externalId,\n id: d.id,\n members: d.members,\n meta: d.meta,\n roles: d.roles,\n account_id: d.accountId,\n }));\n\nexport const marshalCreateAccountServicePrincipalRequestSchema: z.ZodType = z\n .object({\n active: z.boolean().optional(),\n applicationId: z.string().optional(),\n displayName: z.string().optional(),\n externalId: z.string().optional(),\n id: z.string().optional(),\n roles: z.array(z.lazy(() => marshalAccountComplexValueSchema)).optional(),\n accountId: z.string().optional(),\n })\n .transform(d => ({\n active: d.active,\n applicationId: d.applicationId,\n displayName: d.displayName,\n externalId: d.externalId,\n id: d.id,\n roles: d.roles,\n account_id: d.accountId,\n }));\n\nexport const marshalCreateAccountUserRequestSchema: z.ZodType = z\n .object({\n active: z.boolean().optional(),\n displayName: z.string().optional(),\n emails: z.array(z.lazy(() => marshalAccountComplexValueSchema)).optional(),\n externalId: z.string().optional(),\n id: z.string().optional(),\n name: z.lazy(() => marshalAccountNameSchema).optional(),\n roles: z.array(z.lazy(() => marshalAccountComplexValueSchema)).optional(),\n userName: z.string().optional(),\n accountId: z.string().optional(),\n })\n .transform(d => ({\n active: d.active,\n displayName: d.displayName,\n emails: d.emails,\n externalId: d.externalId,\n id: d.id,\n name: d.name,\n roles: d.roles,\n userName: d.userName,\n account_id: d.accountId,\n }));\n\nexport const marshalCreateGroupRequestSchema: z.ZodType = z\n .object({\n displayName: z.string().optional(),\n entitlements: z.array(z.lazy(() => marshalComplexValueSchema)).optional(),\n externalId: z.string().optional(),\n groups: z.array(z.lazy(() => marshalComplexValueSchema)).optional(),\n id: z.string().optional(),\n members: z.array(z.lazy(() => marshalComplexValueSchema)).optional(),\n meta: z.lazy(() => marshalResourceMetaSchema).optional(),\n roles: z.array(z.lazy(() => marshalComplexValueSchema)).optional(),\n schemas: z.array(z.string()).optional(),\n })\n .transform(d => ({\n displayName: d.displayName,\n entitlements: d.entitlements,\n externalId: d.externalId,\n groups: d.groups,\n id: d.id,\n members: d.members,\n meta: d.meta,\n roles: d.roles,\n schemas: d.schemas,\n }));\n\nexport const marshalCreateServicePrincipalRequestSchema: z.ZodType = z\n .object({\n active: z.boolean().optional(),\n applicationId: z.string().optional(),\n displayName: z.string().optional(),\n entitlements: z.array(z.lazy(() => marshalComplexValueSchema)).optional(),\n externalId: z.string().optional(),\n groups: z.array(z.lazy(() => marshalComplexValueSchema)).optional(),\n id: z.string().optional(),\n roles: z.array(z.lazy(() => marshalComplexValueSchema)).optional(),\n schemas: z.array(z.string()).optional(),\n })\n .transform(d => ({\n active: d.active,\n applicationId: d.applicationId,\n displayName: d.displayName,\n entitlements: d.entitlements,\n externalId: d.externalId,\n groups: d.groups,\n id: d.id,\n roles: d.roles,\n schemas: d.schemas,\n }));\n\nexport const marshalCreateUserRequestSchema: z.ZodType = z\n .object({\n active: z.boolean().optional(),\n displayName: z.string().optional(),\n emails: z.array(z.lazy(() => marshalComplexValueSchema)).optional(),\n entitlements: z.array(z.lazy(() => marshalComplexValueSchema)).optional(),\n externalId: z.string().optional(),\n groups: z.array(z.lazy(() => marshalComplexValueSchema)).optional(),\n id: z.string().optional(),\n name: z.lazy(() => marshalNameSchema).optional(),\n roles: z.array(z.lazy(() => marshalComplexValueSchema)).optional(),\n schemas: z.array(z.string()).optional(),\n userName: z.string().optional(),\n })\n .transform(d => ({\n active: d.active,\n displayName: d.displayName,\n emails: d.emails,\n entitlements: d.entitlements,\n externalId: d.externalId,\n groups: d.groups,\n id: d.id,\n name: d.name,\n roles: d.roles,\n schemas: d.schemas,\n userName: d.userName,\n }));\n\nexport const marshalNameSchema: z.ZodType = z\n .object({\n familyName: z.string().optional(),\n givenName: z.string().optional(),\n })\n .transform(d => ({\n familyName: d.familyName,\n givenName: d.givenName,\n }));\n\nexport const marshalPasswordAccessControlRequestSchema: z.ZodType = z\n .object({\n groupName: z.string().optional(),\n permissionLevel: z.string().optional(),\n servicePrincipalName: z.string().optional(),\n userName: z.string().optional(),\n })\n .transform(d => ({\n group_name: d.groupName,\n permission_level: d.permissionLevel,\n service_principal_name: d.servicePrincipalName,\n user_name: d.userName,\n }));\n\nexport const marshalPasswordPermissionsRequestSchema: z.ZodType = z\n .object({\n accessControlList: z\n .array(z.lazy(() => marshalPasswordAccessControlRequestSchema))\n .optional(),\n })\n .transform(d => ({\n access_control_list: d.accessControlList,\n }));\n\nexport const marshalPatchSchema: z.ZodType = z\n .object({\n op: z.string().optional(),\n path: z.string().optional(),\n value: jsonValueSchema.optional(),\n })\n .transform(d => ({\n op: d.op,\n path: d.path,\n value: d.value,\n }));\n\nexport const marshalPatchAccountGroupRequestSchema: z.ZodType = z\n .object({\n id: z.string().optional(),\n operations: z.array(z.lazy(() => marshalAccountPatchSchema)).optional(),\n schemas: z.array(z.string()).optional(),\n accountId: z.string().optional(),\n })\n .transform(d => ({\n id: d.id,\n Operations: d.operations,\n schemas: d.schemas,\n account_id: d.accountId,\n }));\n\nexport const marshalPatchAccountServicePrincipalRequestSchema: z.ZodType = z\n .object({\n id: z.string().optional(),\n operations: z.array(z.lazy(() => marshalAccountPatchSchema)).optional(),\n schemas: z.array(z.string()).optional(),\n accountId: z.string().optional(),\n })\n .transform(d => ({\n id: d.id,\n Operations: d.operations,\n schemas: d.schemas,\n account_id: d.accountId,\n }));\n\nexport const marshalPatchAccountUserRequestSchema: z.ZodType = z\n .object({\n id: z.string().optional(),\n operations: z.array(z.lazy(() => marshalAccountPatchSchema)).optional(),\n schemas: z.array(z.string()).optional(),\n accountId: z.string().optional(),\n })\n .transform(d => ({\n id: d.id,\n Operations: d.operations,\n schemas: d.schemas,\n account_id: d.accountId,\n }));\n\nexport const marshalPatchGroupRequestSchema: z.ZodType = z\n .object({\n id: z.string().optional(),\n operations: z.array(z.lazy(() => marshalPatchSchema)).optional(),\n schemas: z.array(z.string()).optional(),\n })\n .transform(d => ({\n id: d.id,\n Operations: d.operations,\n schemas: d.schemas,\n }));\n\nexport const marshalPatchServicePrincipalRequestSchema: z.ZodType = z\n .object({\n id: z.string().optional(),\n operations: z.array(z.lazy(() => marshalPatchSchema)).optional(),\n schemas: z.array(z.string()).optional(),\n })\n .transform(d => ({\n id: d.id,\n Operations: d.operations,\n schemas: d.schemas,\n }));\n\nexport const marshalPatchUserRequestSchema: z.ZodType = z\n .object({\n id: z.string().optional(),\n operations: z.array(z.lazy(() => marshalPatchSchema)).optional(),\n schemas: z.array(z.string()).optional(),\n })\n .transform(d => ({\n id: d.id,\n Operations: d.operations,\n schemas: d.schemas,\n }));\n\nexport const marshalResourceMetaSchema: z.ZodType = z\n .object({\n resourceType: z.string().optional(),\n })\n .transform(d => ({\n resourceType: d.resourceType,\n }));\n\nexport const marshalUpdateAccountGroupRequestSchema: z.ZodType = z\n .object({\n displayName: z.string().optional(),\n externalId: z.string().optional(),\n id: z.string().optional(),\n members: z.array(z.lazy(() => marshalAccountComplexValueSchema)).optional(),\n meta: z.lazy(() => marshalAccountResourceMetaSchema).optional(),\n roles: z.array(z.lazy(() => marshalAccountComplexValueSchema)).optional(),\n accountId: z.string().optional(),\n })\n .transform(d => ({\n displayName: d.displayName,\n externalId: d.externalId,\n id: d.id,\n members: d.members,\n meta: d.meta,\n roles: d.roles,\n account_id: d.accountId,\n }));\n\nexport const marshalUpdateAccountServicePrincipalRequestSchema: z.ZodType = z\n .object({\n active: z.boolean().optional(),\n applicationId: z.string().optional(),\n displayName: z.string().optional(),\n externalId: z.string().optional(),\n id: z.string().optional(),\n roles: z.array(z.lazy(() => marshalAccountComplexValueSchema)).optional(),\n accountId: z.string().optional(),\n })\n .transform(d => ({\n active: d.active,\n applicationId: d.applicationId,\n displayName: d.displayName,\n externalId: d.externalId,\n id: d.id,\n roles: d.roles,\n account_id: d.accountId,\n }));\n\nexport const marshalUpdateAccountUserRequestSchema: z.ZodType = z\n .object({\n active: z.boolean().optional(),\n displayName: z.string().optional(),\n emails: z.array(z.lazy(() => marshalAccountComplexValueSchema)).optional(),\n externalId: z.string().optional(),\n id: z.string().optional(),\n name: z.lazy(() => marshalAccountNameSchema).optional(),\n roles: z.array(z.lazy(() => marshalAccountComplexValueSchema)).optional(),\n userName: z.string().optional(),\n accountId: z.string().optional(),\n })\n .transform(d => ({\n active: d.active,\n displayName: d.displayName,\n emails: d.emails,\n externalId: d.externalId,\n id: d.id,\n name: d.name,\n roles: d.roles,\n userName: d.userName,\n account_id: d.accountId,\n }));\n\nexport const marshalUpdateGroupRequestSchema: z.ZodType = z\n .object({\n displayName: z.string().optional(),\n entitlements: z.array(z.lazy(() => marshalComplexValueSchema)).optional(),\n externalId: z.string().optional(),\n groups: z.array(z.lazy(() => marshalComplexValueSchema)).optional(),\n id: z.string().optional(),\n members: z.array(z.lazy(() => marshalComplexValueSchema)).optional(),\n meta: z.lazy(() => marshalResourceMetaSchema).optional(),\n roles: z.array(z.lazy(() => marshalComplexValueSchema)).optional(),\n schemas: z.array(z.string()).optional(),\n })\n .transform(d => ({\n displayName: d.displayName,\n entitlements: d.entitlements,\n externalId: d.externalId,\n groups: d.groups,\n id: d.id,\n members: d.members,\n meta: d.meta,\n roles: d.roles,\n schemas: d.schemas,\n }));\n\nexport const marshalUpdateServicePrincipalRequestSchema: z.ZodType = z\n .object({\n active: z.boolean().optional(),\n applicationId: z.string().optional(),\n displayName: z.string().optional(),\n entitlements: z.array(z.lazy(() => marshalComplexValueSchema)).optional(),\n externalId: z.string().optional(),\n groups: z.array(z.lazy(() => marshalComplexValueSchema)).optional(),\n id: z.string().optional(),\n roles: z.array(z.lazy(() => marshalComplexValueSchema)).optional(),\n schemas: z.array(z.string()).optional(),\n })\n .transform(d => ({\n active: d.active,\n applicationId: d.applicationId,\n displayName: d.displayName,\n entitlements: d.entitlements,\n externalId: d.externalId,\n groups: d.groups,\n id: d.id,\n roles: d.roles,\n schemas: d.schemas,\n }));\n\nexport const marshalUpdateUserRequestSchema: z.ZodType = z\n .object({\n active: z.boolean().optional(),\n displayName: z.string().optional(),\n emails: z.array(z.lazy(() => marshalComplexValueSchema)).optional(),\n entitlements: z.array(z.lazy(() => marshalComplexValueSchema)).optional(),\n externalId: z.string().optional(),\n groups: z.array(z.lazy(() => marshalComplexValueSchema)).optional(),\n id: z.string().optional(),\n name: z.lazy(() => marshalNameSchema).optional(),\n roles: z.array(z.lazy(() => marshalComplexValueSchema)).optional(),\n schemas: z.array(z.string()).optional(),\n userName: z.string().optional(),\n })\n .transform(d => ({\n active: d.active,\n displayName: d.displayName,\n emails: d.emails,\n entitlements: d.entitlements,\n externalId: d.externalId,\n groups: d.groups,\n id: d.id,\n name: d.name,\n roles: d.roles,\n schemas: d.schemas,\n userName: d.userName,\n }));\n"],"mappings":";;;AAKA,MAAM,kBAAwC,EAAE,WAC9C,EAAE,MAAM;CACN,EAAE,MAAM;CACR,EAAE,QAAQ;CACV,EAAE,QAAQ;CACV,EAAE,SAAS;CACX,EAAE,OAAO,EAAE,QAAQ,EAAE,gBAAgB;CACrC,EAAE,MAAM,gBAAgB;CACzB,CAAC,CACH;AAGD,MAAa,eAAe;CAC1B,4BAA4B;CAC5B,WAAW;CACX,YAAY;CACb;AAMD,MAAa,cAAc;CACzB,0BAA0B;CAC1B,6CACE;CACH;AAMD,MAAa,qBAAqB;CAChC,kCAAkC;CAClC,qDACE;CACH;;AAOD,MAAa,UAAU;CACrB,sBAAsB;CACtB,KAAK;CACL,QAAQ;CACR,SAAS;CACV;AAID,MAAa,cAAc;CACzB,0BAA0B;CAC1B,gDACE;CACH;AAMD,MAAa,yBAAyB;CACpC,sCAAsC;CACtC,yDACE;CACH;AAMD,MAAa,aAAa;CACxB,yBAAyB;CACzB,4CACE;CACF,2DACE;CACH;AAMD,MAAa,mCAAmC;CAC9C,4BAA4B;CAC5B,WAAW;CACX,YAAY;CACb;AAOD,MAAa,wBAAwB;CACnC,mBAAmB;CACnB,WAAW;CACX,YAAY;CACb;;AAQD,MAAa,yBAAyB;CACpC,sBAAsB;CACtB,KAAK;CACL,QAAQ;CACR,SAAS;CACV;AAOD,MAAa,iCAAiC;CAC5C,0BAA0B;CAC1B,gDACE;CACH;AAOD,MAAa,iBAAiB;CAC5B,mBAAmB;CACnB,WAAW;CACX,YAAY;CACb;;AAQD,MAAa,2BAA2B;CACtC,mBAAmB;CACnB,SAAS;CACV;AAw0BD,MAAa,qCACX,EACG,OAAO;CACN,SAAS,EAAE,QAAQ,CAAC,UAAU;CAC9B,SAAS,EAAE,SAAS,CAAC,UAAU;CAC/B,MAAM,EAAE,QAAQ,CAAC,UAAU;CAC3B,MAAM,EAAE,QAAQ,CAAC,UAAU;CAC3B,OAAO,EAAE,QAAQ,CAAC,UAAU;CAC7B,CAAC,CACD,WAAU,OAAM;CACf,SAAS,EAAE;CACX,SAAS,EAAE;CACX,KAAK,EAAE;CACP,MAAM,EAAE;CACR,OAAO,EAAE;CACV,EAAE;AAEP,MAAa,8BAAuD,EACjE,OAAO;CACN,aAAa,EAAE,QAAQ,CAAC,UAAU;CAClC,YAAY,EAAE,QAAQ,CAAC,UAAU;CACjC,IAAI,EAAE,QAAQ,CAAC,UAAU;CACzB,SAAS,EACN,MAAM,EAAE,WAAW,mCAAmC,CAAC,CACvD,UAAU;CACb,MAAM,EAAE,WAAW,mCAAmC,CAAC,UAAU;CACjE,OAAO,EAAE,MAAM,EAAE,WAAW,mCAAmC,CAAC,CAAC,UAAU;CAC3E,YAAY,EAAE,QAAQ,CAAC,UAAU;CAClC,CAAC,CACD,WAAU,OAAM;CACf,aAAa,EAAE;CACf,YAAY,EAAE;CACd,IAAI,EAAE;CACN,SAAS,EAAE;CACX,MAAM,EAAE;CACR,OAAO,EAAE;CACT,WAAW,EAAE;CACd,EAAE;AAEL,MAAa,6BAAqD,EAC/D,OAAO;CACN,YAAY,EAAE,QAAQ,CAAC,UAAU;CACjC,WAAW,EAAE,QAAQ,CAAC,UAAU;CACjC,CAAC,CACD,WAAU,OAAM;CACf,YAAY,EAAE;CACd,WAAW,EAAE;CACd,EAAE;AAEL,MAAa,qCACX,EACG,OAAO,EACN,cAAc,EAAE,QAAQ,CAAC,UAAU,EACpC,CAAC,CACD,WAAU,OAAM,EACf,cAAc,EAAE,cACjB,EAAE;AAEP,MAAa,yCACX,EACG,OAAO;CACN,QAAQ,EAAE,SAAS,CAAC,UAAU;CAC9B,eAAe,EAAE,QAAQ,CAAC,UAAU;CACpC,aAAa,EAAE,QAAQ,CAAC,UAAU;CAClC,YAAY,EAAE,QAAQ,CAAC,UAAU;CACjC,IAAI,EAAE,QAAQ,CAAC,UAAU;CACzB,OAAO,EACJ,MAAM,EAAE,WAAW,mCAAmC,CAAC,CACvD,UAAU;CACb,YAAY,EAAE,QAAQ,CAAC,UAAU;CAClC,CAAC,CACD,WAAU,OAAM;CACf,QAAQ,EAAE;CACV,eAAe,EAAE;CACjB,aAAa,EAAE;CACf,YAAY,EAAE;CACd,IAAI,EAAE;CACN,OAAO,EAAE;CACT,WAAW,EAAE;CACd,EAAE;AAEP,MAAa,6BAAqD,EAC/D,OAAO;CACN,QAAQ,EAAE,SAAS,CAAC,UAAU;CAC9B,aAAa,EAAE,QAAQ,CAAC,UAAU;CAClC,QAAQ,EACL,MAAM,EAAE,WAAW,mCAAmC,CAAC,CACvD,UAAU;CACb,YAAY,EAAE,QAAQ,CAAC,UAAU;CACjC,IAAI,EAAE,QAAQ,CAAC,UAAU;CACzB,MAAM,EAAE,WAAW,2BAA2B,CAAC,UAAU;CACzD,OAAO,EAAE,MAAM,EAAE,WAAW,mCAAmC,CAAC,CAAC,UAAU;CAC3E,UAAU,EAAE,QAAQ,CAAC,UAAU;CAC/B,YAAY,EAAE,QAAQ,CAAC,UAAU;CAClC,CAAC,CACD,WAAU,OAAM;CACf,QAAQ,EAAE;CACV,aAAa,EAAE;CACf,QAAQ,EAAE;CACV,YAAY,EAAE;CACd,IAAI,EAAE;CACN,MAAM,EAAE;CACR,OAAO,EAAE;CACT,UAAU,EAAE;CACZ,WAAW,EAAE;CACd,EAAE;AAEL,MAAa,8BAAuD,EACjE,OAAO;CACN,SAAS,EAAE,QAAQ,CAAC,UAAU;CAC9B,SAAS,EAAE,SAAS,CAAC,UAAU;CAC/B,MAAM,EAAE,QAAQ,CAAC,UAAU;CAC3B,MAAM,EAAE,QAAQ,CAAC,UAAU;CAC3B,OAAO,EAAE,QAAQ,CAAC,UAAU;CAC7B,CAAC,CACD,WAAU,OAAM;CACf,SAAS,EAAE;CACX,SAAS,EAAE;CACX,KAAK,EAAE;CACP,MAAM,EAAE;CACR,OAAO,EAAE;CACV,EAAE;AAEL,MAAa,qDACX,EACG,OAAO,EACN,mBAAmB,EAChB,MAAM,EAAE,WAAW,8CAA8C,CAAC,CAClE,UAAU,EACd,CAAC,CACD,WAAU,OAAM,EACf,kBAAkB,EAAE,mBACrB,EAAE;AAEP,MAAa,uBAAyC,EACnD,OAAO;CACN,aAAa,EAAE,QAAQ,CAAC,UAAU;CAClC,cAAc,EAAE,MAAM,EAAE,WAAW,4BAA4B,CAAC,CAAC,UAAU;CAC3E,YAAY,EAAE,QAAQ,CAAC,UAAU;CACjC,QAAQ,EAAE,MAAM,EAAE,WAAW,4BAA4B,CAAC,CAAC,UAAU;CACrE,IAAI,EAAE,QAAQ,CAAC,UAAU;CACzB,SAAS,EAAE,MAAM,EAAE,WAAW,4BAA4B,CAAC,CAAC,UAAU;CACtE,MAAM,EAAE,WAAW,4BAA4B,CAAC,UAAU;CAC1D,OAAO,EAAE,MAAM,EAAE,WAAW,4BAA4B,CAAC,CAAC,UAAU;CACpE,SAAS,EAAE,MAAM,EAAE,QAAQ,CAAC,CAAC,UAAU;CACxC,CAAC,CACD,WAAU,OAAM;CACf,aAAa,EAAE;CACf,cAAc,EAAE;CAChB,YAAY,EAAE;CACd,QAAQ,EAAE;CACV,IAAI,EAAE;CACN,SAAS,EAAE;CACX,MAAM,EAAE;CACR,OAAO,EAAE;CACT,SAAS,EAAE;CACZ,EAAE;AAEL,MAAa,2CACX,EACG,OAAO;CACN,cAAc,EAAE,QAAQ,CAAC,UAAU;CACnC,WAAW,EAAE,MAAM,EAAE,WAAW,4BAA4B,CAAC,CAAC,UAAU;CACxE,YAAY,EACT,MAAM;EAAC,EAAE,QAAQ;EAAE,EAAE,QAAQ;EAAE,EAAE,QAAQ;EAAC,CAAC,CAC3C,WAAU,MAAK,OAAO,EAAE,CAAC,CACzB,UAAU;CACb,cAAc,EAAE,QAAQ,CAAC,UAAU;CACpC,CAAC,CACD,WAAU,OAAM;CACf,cAAc,EAAE;CAChB,WAAW,EAAE;CACb,YAAY,EAAE;CACd,cAAc,EAAE;CACjB,EAAE;AAEP,MAAa,sDACX,EACG,OAAO;CACN,cAAc,EAAE,QAAQ,CAAC,UAAU;CACnC,WAAW,EACR,MAAM,EAAE,WAAW,uCAAuC,CAAC,CAC3D,UAAU;CACb,YAAY,EACT,MAAM;EAAC,EAAE,QAAQ;EAAE,EAAE,QAAQ;EAAE,EAAE,QAAQ;EAAC,CAAC,CAC3C,WAAU,MAAK,OAAO,EAAE,CAAC,CACzB,UAAU;CACb,cAAc,EAAE,QAAQ,CAAC,UAAU;CACpC,CAAC,CACD,WAAU,OAAM;CACf,cAAc,EAAE;CAChB,WAAW,EAAE;CACb,YAAY,EAAE;CACd,cAAc,EAAE;CACjB,EAAE;AAEP,MAAa,0CACX,EACG,OAAO;CACN,cAAc,EAAE,QAAQ,CAAC,UAAU;CACnC,WAAW,EAAE,MAAM,EAAE,WAAW,2BAA2B,CAAC,CAAC,UAAU;CACvE,YAAY,EACT,MAAM;EAAC,EAAE,QAAQ;EAAE,EAAE,QAAQ;EAAE,EAAE,QAAQ;EAAC,CAAC,CAC3C,WAAU,MAAK,OAAO,EAAE,CAAC,CACzB,UAAU;CACb,cAAc,EAAE,QAAQ,CAAC,UAAU;CACpC,CAAC,CACD,WAAU,OAAM;CACf,cAAc,EAAE;CAChB,WAAW,EAAE;CACb,YAAY,EAAE;CACd,cAAc,EAAE;CACjB,EAAE;AAEP,MAAa,oCACX,EACG,OAAO;CACN,cAAc,EAAE,QAAQ,CAAC,UAAU;CACnC,WAAW,EAAE,MAAM,EAAE,WAAW,qBAAqB,CAAC,CAAC,UAAU;CACjE,SAAS,EAAE,MAAM,EAAE,QAAQ,CAAC,CAAC,UAAU;CACvC,YAAY,EACT,MAAM;EAAC,EAAE,QAAQ;EAAE,EAAE,QAAQ;EAAE,EAAE,QAAQ;EAAC,CAAC,CAC3C,WAAU,MAAK,OAAO,EAAE,CAAC,CACzB,UAAU;CACb,cAAc,EAAE,QAAQ,CAAC,UAAU;CACpC,CAAC,CACD,WAAU,OAAM;CACf,cAAc,EAAE;CAChB,WAAW,EAAE;CACb,SAAS,EAAE;CACX,YAAY,EAAE;CACd,cAAc,EAAE;CACjB,EAAE;AAEP,MAAa,8CACX,EACG,OAAO;CACN,cAAc,EAAE,QAAQ,CAAC,UAAU;CACnC,WAAW,EACR,MAAM,EAAE,WAAW,gCAAgC,CAAC,CACpD,UAAU;CACb,SAAS,EAAE,MAAM,EAAE,QAAQ,CAAC,CAAC,UAAU;CACvC,YAAY,EACT,MAAM;EAAC,EAAE,QAAQ;EAAE,EAAE,QAAQ;EAAE,EAAE,QAAQ;EAAC,CAAC,CAC3C,WAAU,MAAK,OAAO,EAAE,CAAC,CACzB,UAAU;CACb,cAAc,EAAE,QAAQ,CAAC,UAAU;CACpC,CAAC,CACD,WAAU,OAAM;CACf,cAAc,EAAE;CAChB,WAAW,EAAE;CACb,SAAS,EAAE;CACX,YAAY,EAAE;CACd,cAAc,EAAE;CACjB,EAAE;AAEP,MAAa,mCAAiE,EAC3E,OAAO;CACN,cAAc,EAAE,QAAQ,CAAC,UAAU;CACnC,WAAW,EAAE,MAAM,EAAE,WAAW,oBAAoB,CAAC,CAAC,UAAU;CAChE,SAAS,EAAE,MAAM,EAAE,QAAQ,CAAC,CAAC,UAAU;CACvC,YAAY,EACT,MAAM;EAAC,EAAE,QAAQ;EAAE,EAAE,QAAQ;EAAE,EAAE,QAAQ;EAAC,CAAC,CAC3C,WAAU,MAAK,OAAO,EAAE,CAAC,CACzB,UAAU;CACb,cAAc,EAAE,QAAQ,CAAC,UAAU;CACpC,CAAC,CACD,WAAU,OAAM;CACf,cAAc,EAAE;CAChB,WAAW,EAAE;CACb,SAAS,EAAE;CACX,YAAY,EAAE;CACd,cAAc,EAAE;CACjB,EAAE;AAEL,MAAa,sBAAuC,EACjD,OAAO;CACN,YAAY,EAAE,QAAQ,CAAC,UAAU;CACjC,WAAW,EAAE,QAAQ,CAAC,UAAU;CACjC,CAAC,CACD,WAAU,OAAM;CACf,YAAY,EAAE;CACd,WAAW,EAAE;CACd,EAAE;AAEL,MAAa,+CACX,EACG,OAAO;CACN,iBAAiB,EACd,MAAM,EAAE,WAAW,kCAAkC,CAAC,CACtD,UAAU;CACb,cAAc,EAAE,QAAQ,CAAC,UAAU;CACnC,YAAY,EAAE,QAAQ,CAAC,UAAU;CACjC,wBAAwB,EAAE,QAAQ,CAAC,UAAU;CAC7C,WAAW,EAAE,QAAQ,CAAC,UAAU;CACjC,CAAC,CACD,WAAU,OAAM;CACf,gBAAgB,EAAE;CAClB,aAAa,EAAE;CACf,WAAW,EAAE;CACb,sBAAsB,EAAE;CACxB,UAAU,EAAE;CACb,EAAE;AAEP,MAAa,oCACX,EACG,OAAO;CACN,WAAW,EAAE,SAAS,CAAC,UAAU;CACjC,uBAAuB,EAAE,MAAM,EAAE,QAAQ,CAAC,CAAC,UAAU;CACrD,kBAAkB,EAAE,QAAQ,CAAC,UAAU;CACxC,CAAC,CACD,WAAU,OAAM;CACf,WAAW,EAAE;CACb,qBAAqB,EAAE;CACvB,iBAAiB,EAAE;CACpB,EAAE;AAEP,MAAa,qCACX,EACG,OAAO;CACN,qBAAqB,EAClB,MAAM,EAAE,WAAW,6CAA6C,CAAC,CACjE,UAAU;CACb,WAAW,EAAE,QAAQ,CAAC,UAAU;CAChC,aAAa,EAAE,QAAQ,CAAC,UAAU;CACnC,CAAC,CACD,WAAU,OAAM;CACf,mBAAmB,EAAE;CACrB,UAAU,EAAE;CACZ,YAAY,EAAE;CACf,EAAE;AAEP,MAAa,gDACX,EACG,OAAO;CACN,aAAa,EAAE,QAAQ,CAAC,UAAU;CAClC,kBAAkB,EAAE,QAAQ,CAAC,UAAU;CACxC,CAAC,CACD,WAAU,OAAM;CACf,aAAa,EAAE;CACf,iBAAiB,EAAE;CACpB,EAAE;AAEP,MAAa,8BAAuD,EACjE,OAAO,EACN,cAAc,EAAE,QAAQ,CAAC,UAAU,EACpC,CAAC,CACD,WAAU,OAAM,EACf,cAAc,EAAE,cACjB,EAAE;AAEL,MAAa,kCAA+D,EACzE,OAAO;CACN,QAAQ,EAAE,SAAS,CAAC,UAAU;CAC9B,eAAe,EAAE,QAAQ,CAAC,UAAU;CACpC,aAAa,EAAE,QAAQ,CAAC,UAAU;CAClC,cAAc,EAAE,MAAM,EAAE,WAAW,4BAA4B,CAAC,CAAC,UAAU;CAC3E,YAAY,EAAE,QAAQ,CAAC,UAAU;CACjC,QAAQ,EAAE,MAAM,EAAE,WAAW,4BAA4B,CAAC,CAAC,UAAU;CACrE,IAAI,EAAE,QAAQ,CAAC,UAAU;CACzB,OAAO,EAAE,MAAM,EAAE,WAAW,4BAA4B,CAAC,CAAC,UAAU;CACpE,SAAS,EAAE,MAAM,EAAE,QAAQ,CAAC,CAAC,UAAU;CACxC,CAAC,CACD,WAAU,OAAM;CACf,QAAQ,EAAE;CACV,eAAe,EAAE;CACjB,aAAa,EAAE;CACf,cAAc,EAAE;CAChB,YAAY,EAAE;CACd,QAAQ,EAAE;CACV,IAAI,EAAE;CACN,OAAO,EAAE;CACT,SAAS,EAAE;CACZ,EAAE;AAEL,MAAa,sBAAuC,EACjD,OAAO;CACN,QAAQ,EAAE,SAAS,CAAC,UAAU;CAC9B,aAAa,EAAE,QAAQ,CAAC,UAAU;CAClC,QAAQ,EAAE,MAAM,EAAE,WAAW,4BAA4B,CAAC,CAAC,UAAU;CACrE,cAAc,EAAE,MAAM,EAAE,WAAW,4BAA4B,CAAC,CAAC,UAAU;CAC3E,YAAY,EAAE,QAAQ,CAAC,UAAU;CACjC,QAAQ,EAAE,MAAM,EAAE,WAAW,4BAA4B,CAAC,CAAC,UAAU;CACrE,IAAI,EAAE,QAAQ,CAAC,UAAU;CACzB,MAAM,EAAE,WAAW,oBAAoB,CAAC,UAAU;CAClD,OAAO,EAAE,MAAM,EAAE,WAAW,4BAA4B,CAAC,CAAC,UAAU;CACpE,SAAS,EAAE,MAAM,EAAE,QAAQ,CAAC,CAAC,UAAU;CACvC,UAAU,EAAE,QAAQ,CAAC,UAAU;CAChC,CAAC,CACD,WAAU,OAAM;CACf,QAAQ,EAAE;CACV,aAAa,EAAE;CACf,QAAQ,EAAE;CACV,cAAc,EAAE;CAChB,YAAY,EAAE;CACd,QAAQ,EAAE;CACV,IAAI,EAAE;CACN,MAAM,EAAE;CACR,OAAO,EAAE;CACT,SAAS,EAAE;CACX,UAAU,EAAE;CACb,EAAE;AAEL,MAAa,mCAA8C,EACxD,OAAO;CACN,SAAS,EAAE,QAAQ,CAAC,UAAU;CAC9B,SAAS,EAAE,SAAS,CAAC,UAAU;CAC/B,KAAK,EAAE,QAAQ,CAAC,UAAU;CAC1B,MAAM,EAAE,QAAQ,CAAC,UAAU;CAC3B,OAAO,EAAE,QAAQ,CAAC,UAAU;CAC7B,CAAC,CACD,WAAU,OAAM;CACf,SAAS,EAAE;CACX,SAAS,EAAE;CACX,MAAM,EAAE;CACR,MAAM,EAAE;CACR,OAAO,EAAE;CACV,EAAE;AAEL,MAAa,2BAAsC,EAChD,OAAO;CACN,YAAY,EAAE,QAAQ,CAAC,UAAU;CACjC,WAAW,EAAE,QAAQ,CAAC,UAAU;CACjC,CAAC,CACD,WAAU,OAAM;CACf,YAAY,EAAE;CACd,WAAW,EAAE;CACd,EAAE;AAEL,MAAa,4BAAuC,EACjD,OAAO;CACN,IAAI,EAAE,QAAQ,CAAC,UAAU;CACzB,MAAM,EAAE,QAAQ,CAAC,UAAU;CAC3B,OAAO,gBAAgB,UAAU;CAClC,CAAC,CACD,WAAU,OAAM;CACf,IAAI,EAAE;CACN,MAAM,EAAE;CACR,OAAO,EAAE;CACV,EAAE;AAEL,MAAa,mCAA8C,EACxD,OAAO,EACN,cAAc,EAAE,QAAQ,CAAC,UAAU,EACpC,CAAC,CACD,WAAU,OAAM,EACf,cAAc,EAAE,cACjB,EAAE;AAEL,MAAa,4BAAuC,EACjD,OAAO;CACN,SAAS,EAAE,QAAQ,CAAC,UAAU;CAC9B,SAAS,EAAE,SAAS,CAAC,UAAU;CAC/B,KAAK,EAAE,QAAQ,CAAC,UAAU;CAC1B,MAAM,EAAE,QAAQ,CAAC,UAAU;CAC3B,OAAO,EAAE,QAAQ,CAAC,UAAU;CAC7B,CAAC,CACD,WAAU,OAAM;CACf,SAAS,EAAE;CACX,SAAS,EAAE;CACX,MAAM,EAAE;CACR,MAAM,EAAE;CACR,OAAO,EAAE;CACV,EAAE;AAEL,MAAa,yCAAoD,EAC9D,OAAO;CACN,aAAa,EAAE,QAAQ,CAAC,UAAU;CAClC,YAAY,EAAE,QAAQ,CAAC,UAAU;CACjC,IAAI,EAAE,QAAQ,CAAC,UAAU;CACzB,SAAS,EAAE,MAAM,EAAE,WAAW,iCAAiC,CAAC,CAAC,UAAU;CAC3E,MAAM,EAAE,WAAW,iCAAiC,CAAC,UAAU;CAC/D,OAAO,EAAE,MAAM,EAAE,WAAW,iCAAiC,CAAC,CAAC,UAAU;CACzE,WAAW,EAAE,QAAQ,CAAC,UAAU;CACjC,CAAC,CACD,WAAU,OAAM;CACf,aAAa,EAAE;CACf,YAAY,EAAE;CACd,IAAI,EAAE;CACN,SAAS,EAAE;CACX,MAAM,EAAE;CACR,OAAO,EAAE;CACT,YAAY,EAAE;CACf,EAAE;AAEL,MAAa,oDAA+D,EACzE,OAAO;CACN,QAAQ,EAAE,SAAS,CAAC,UAAU;CAC9B,eAAe,EAAE,QAAQ,CAAC,UAAU;CACpC,aAAa,EAAE,QAAQ,CAAC,UAAU;CAClC,YAAY,EAAE,QAAQ,CAAC,UAAU;CACjC,IAAI,EAAE,QAAQ,CAAC,UAAU;CACzB,OAAO,EAAE,MAAM,EAAE,WAAW,iCAAiC,CAAC,CAAC,UAAU;CACzE,WAAW,EAAE,QAAQ,CAAC,UAAU;CACjC,CAAC,CACD,WAAU,OAAM;CACf,QAAQ,EAAE;CACV,eAAe,EAAE;CACjB,aAAa,EAAE;CACf,YAAY,EAAE;CACd,IAAI,EAAE;CACN,OAAO,EAAE;CACT,YAAY,EAAE;CACf,EAAE;AAEL,MAAa,wCAAmD,EAC7D,OAAO;CACN,QAAQ,EAAE,SAAS,CAAC,UAAU;CAC9B,aAAa,EAAE,QAAQ,CAAC,UAAU;CAClC,QAAQ,EAAE,MAAM,EAAE,WAAW,iCAAiC,CAAC,CAAC,UAAU;CAC1E,YAAY,EAAE,QAAQ,CAAC,UAAU;CACjC,IAAI,EAAE,QAAQ,CAAC,UAAU;CACzB,MAAM,EAAE,WAAW,yBAAyB,CAAC,UAAU;CACvD,OAAO,EAAE,MAAM,EAAE,WAAW,iCAAiC,CAAC,CAAC,UAAU;CACzE,UAAU,EAAE,QAAQ,CAAC,UAAU;CAC/B,WAAW,EAAE,QAAQ,CAAC,UAAU;CACjC,CAAC,CACD,WAAU,OAAM;CACf,QAAQ,EAAE;CACV,aAAa,EAAE;CACf,QAAQ,EAAE;CACV,YAAY,EAAE;CACd,IAAI,EAAE;CACN,MAAM,EAAE;CACR,OAAO,EAAE;CACT,UAAU,EAAE;CACZ,YAAY,EAAE;CACf,EAAE;AAEL,MAAa,kCAA6C,EACvD,OAAO;CACN,aAAa,EAAE,QAAQ,CAAC,UAAU;CAClC,cAAc,EAAE,MAAM,EAAE,WAAW,0BAA0B,CAAC,CAAC,UAAU;CACzE,YAAY,EAAE,QAAQ,CAAC,UAAU;CACjC,QAAQ,EAAE,MAAM,EAAE,WAAW,0BAA0B,CAAC,CAAC,UAAU;CACnE,IAAI,EAAE,QAAQ,CAAC,UAAU;CACzB,SAAS,EAAE,MAAM,EAAE,WAAW,0BAA0B,CAAC,CAAC,UAAU;CACpE,MAAM,EAAE,WAAW,0BAA0B,CAAC,UAAU;CACxD,OAAO,EAAE,MAAM,EAAE,WAAW,0BAA0B,CAAC,CAAC,UAAU;CAClE,SAAS,EAAE,MAAM,EAAE,QAAQ,CAAC,CAAC,UAAU;CACxC,CAAC,CACD,WAAU,OAAM;CACf,aAAa,EAAE;CACf,cAAc,EAAE;CAChB,YAAY,EAAE;CACd,QAAQ,EAAE;CACV,IAAI,EAAE;CACN,SAAS,EAAE;CACX,MAAM,EAAE;CACR,OAAO,EAAE;CACT,SAAS,EAAE;CACZ,EAAE;AAEL,MAAa,6CAAwD,EAClE,OAAO;CACN,QAAQ,EAAE,SAAS,CAAC,UAAU;CAC9B,eAAe,EAAE,QAAQ,CAAC,UAAU;CACpC,aAAa,EAAE,QAAQ,CAAC,UAAU;CAClC,cAAc,EAAE,MAAM,EAAE,WAAW,0BAA0B,CAAC,CAAC,UAAU;CACzE,YAAY,EAAE,QAAQ,CAAC,UAAU;CACjC,QAAQ,EAAE,MAAM,EAAE,WAAW,0BAA0B,CAAC,CAAC,UAAU;CACnE,IAAI,EAAE,QAAQ,CAAC,UAAU;CACzB,OAAO,EAAE,MAAM,EAAE,WAAW,0BAA0B,CAAC,CAAC,UAAU;CAClE,SAAS,EAAE,MAAM,EAAE,QAAQ,CAAC,CAAC,UAAU;CACxC,CAAC,CACD,WAAU,OAAM;CACf,QAAQ,EAAE;CACV,eAAe,EAAE;CACjB,aAAa,EAAE;CACf,cAAc,EAAE;CAChB,YAAY,EAAE;CACd,QAAQ,EAAE;CACV,IAAI,EAAE;CACN,OAAO,EAAE;CACT,SAAS,EAAE;CACZ,EAAE;AAEL,MAAa,iCAA4C,EACtD,OAAO;CACN,QAAQ,EAAE,SAAS,CAAC,UAAU;CAC9B,aAAa,EAAE,QAAQ,CAAC,UAAU;CAClC,QAAQ,EAAE,MAAM,EAAE,WAAW,0BAA0B,CAAC,CAAC,UAAU;CACnE,cAAc,EAAE,MAAM,EAAE,WAAW,0BAA0B,CAAC,CAAC,UAAU;CACzE,YAAY,EAAE,QAAQ,CAAC,UAAU;CACjC,QAAQ,EAAE,MAAM,EAAE,WAAW,0BAA0B,CAAC,CAAC,UAAU;CACnE,IAAI,EAAE,QAAQ,CAAC,UAAU;CACzB,MAAM,EAAE,WAAW,kBAAkB,CAAC,UAAU;CAChD,OAAO,EAAE,MAAM,EAAE,WAAW,0BAA0B,CAAC,CAAC,UAAU;CAClE,SAAS,EAAE,MAAM,EAAE,QAAQ,CAAC,CAAC,UAAU;CACvC,UAAU,EAAE,QAAQ,CAAC,UAAU;CAChC,CAAC,CACD,WAAU,OAAM;CACf,QAAQ,EAAE;CACV,aAAa,EAAE;CACf,QAAQ,EAAE;CACV,cAAc,EAAE;CAChB,YAAY,EAAE;CACd,QAAQ,EAAE;CACV,IAAI,EAAE;CACN,MAAM,EAAE;CACR,OAAO,EAAE;CACT,SAAS,EAAE;CACX,UAAU,EAAE;CACb,EAAE;AAEL,MAAa,oBAA+B,EACzC,OAAO;CACN,YAAY,EAAE,QAAQ,CAAC,UAAU;CACjC,WAAW,EAAE,QAAQ,CAAC,UAAU;CACjC,CAAC,CACD,WAAU,OAAM;CACf,YAAY,EAAE;CACd,WAAW,EAAE;CACd,EAAE;AAEL,MAAa,4CAAuD,EACjE,OAAO;CACN,WAAW,EAAE,QAAQ,CAAC,UAAU;CAChC,iBAAiB,EAAE,QAAQ,CAAC,UAAU;CACtC,sBAAsB,EAAE,QAAQ,CAAC,UAAU;CAC3C,UAAU,EAAE,QAAQ,CAAC,UAAU;CAChC,CAAC,CACD,WAAU,OAAM;CACf,YAAY,EAAE;CACd,kBAAkB,EAAE;CACpB,wBAAwB,EAAE;CAC1B,WAAW,EAAE;CACd,EAAE;AAEL,MAAa,0CAAqD,EAC/D,OAAO,EACN,mBAAmB,EAChB,MAAM,EAAE,WAAW,0CAA0C,CAAC,CAC9D,UAAU,EACd,CAAC,CACD,WAAU,OAAM,EACf,qBAAqB,EAAE,mBACxB,EAAE;AAEL,MAAa,qBAAgC,EAC1C,OAAO;CACN,IAAI,EAAE,QAAQ,CAAC,UAAU;CACzB,MAAM,EAAE,QAAQ,CAAC,UAAU;CAC3B,OAAO,gBAAgB,UAAU;CAClC,CAAC,CACD,WAAU,OAAM;CACf,IAAI,EAAE;CACN,MAAM,EAAE;CACR,OAAO,EAAE;CACV,EAAE;AAEL,MAAa,wCAAmD,EAC7D,OAAO;CACN,IAAI,EAAE,QAAQ,CAAC,UAAU;CACzB,YAAY,EAAE,MAAM,EAAE,WAAW,0BAA0B,CAAC,CAAC,UAAU;CACvE,SAAS,EAAE,MAAM,EAAE,QAAQ,CAAC,CAAC,UAAU;CACvC,WAAW,EAAE,QAAQ,CAAC,UAAU;CACjC,CAAC,CACD,WAAU,OAAM;CACf,IAAI,EAAE;CACN,YAAY,EAAE;CACd,SAAS,EAAE;CACX,YAAY,EAAE;CACf,EAAE;AAEL,MAAa,mDAA8D,EACxE,OAAO;CACN,IAAI,EAAE,QAAQ,CAAC,UAAU;CACzB,YAAY,EAAE,MAAM,EAAE,WAAW,0BAA0B,CAAC,CAAC,UAAU;CACvE,SAAS,EAAE,MAAM,EAAE,QAAQ,CAAC,CAAC,UAAU;CACvC,WAAW,EAAE,QAAQ,CAAC,UAAU;CACjC,CAAC,CACD,WAAU,OAAM;CACf,IAAI,EAAE;CACN,YAAY,EAAE;CACd,SAAS,EAAE;CACX,YAAY,EAAE;CACf,EAAE;AAEL,MAAa,uCAAkD,EAC5D,OAAO;CACN,IAAI,EAAE,QAAQ,CAAC,UAAU;CACzB,YAAY,EAAE,MAAM,EAAE,WAAW,0BAA0B,CAAC,CAAC,UAAU;CACvE,SAAS,EAAE,MAAM,EAAE,QAAQ,CAAC,CAAC,UAAU;CACvC,WAAW,EAAE,QAAQ,CAAC,UAAU;CACjC,CAAC,CACD,WAAU,OAAM;CACf,IAAI,EAAE;CACN,YAAY,EAAE;CACd,SAAS,EAAE;CACX,YAAY,EAAE;CACf,EAAE;AAEL,MAAa,iCAA4C,EACtD,OAAO;CACN,IAAI,EAAE,QAAQ,CAAC,UAAU;CACzB,YAAY,EAAE,MAAM,EAAE,WAAW,mBAAmB,CAAC,CAAC,UAAU;CAChE,SAAS,EAAE,MAAM,EAAE,QAAQ,CAAC,CAAC,UAAU;CACxC,CAAC,CACD,WAAU,OAAM;CACf,IAAI,EAAE;CACN,YAAY,EAAE;CACd,SAAS,EAAE;CACZ,EAAE;AAEL,MAAa,4CAAuD,EACjE,OAAO;CACN,IAAI,EAAE,QAAQ,CAAC,UAAU;CACzB,YAAY,EAAE,MAAM,EAAE,WAAW,mBAAmB,CAAC,CAAC,UAAU;CAChE,SAAS,EAAE,MAAM,EAAE,QAAQ,CAAC,CAAC,UAAU;CACxC,CAAC,CACD,WAAU,OAAM;CACf,IAAI,EAAE;CACN,YAAY,EAAE;CACd,SAAS,EAAE;CACZ,EAAE;AAEL,MAAa,gCAA2C,EACrD,OAAO;CACN,IAAI,EAAE,QAAQ,CAAC,UAAU;CACzB,YAAY,EAAE,MAAM,EAAE,WAAW,mBAAmB,CAAC,CAAC,UAAU;CAChE,SAAS,EAAE,MAAM,EAAE,QAAQ,CAAC,CAAC,UAAU;CACxC,CAAC,CACD,WAAU,OAAM;CACf,IAAI,EAAE;CACN,YAAY,EAAE;CACd,SAAS,EAAE;CACZ,EAAE;AAEL,MAAa,4BAAuC,EACjD,OAAO,EACN,cAAc,EAAE,QAAQ,CAAC,UAAU,EACpC,CAAC,CACD,WAAU,OAAM,EACf,cAAc,EAAE,cACjB,EAAE;AAEL,MAAa,yCAAoD,EAC9D,OAAO;CACN,aAAa,EAAE,QAAQ,CAAC,UAAU;CAClC,YAAY,EAAE,QAAQ,CAAC,UAAU;CACjC,IAAI,EAAE,QAAQ,CAAC,UAAU;CACzB,SAAS,EAAE,MAAM,EAAE,WAAW,iCAAiC,CAAC,CAAC,UAAU;CAC3E,MAAM,EAAE,WAAW,iCAAiC,CAAC,UAAU;CAC/D,OAAO,EAAE,MAAM,EAAE,WAAW,iCAAiC,CAAC,CAAC,UAAU;CACzE,WAAW,EAAE,QAAQ,CAAC,UAAU;CACjC,CAAC,CACD,WAAU,OAAM;CACf,aAAa,EAAE;CACf,YAAY,EAAE;CACd,IAAI,EAAE;CACN,SAAS,EAAE;CACX,MAAM,EAAE;CACR,OAAO,EAAE;CACT,YAAY,EAAE;CACf,EAAE;AAEL,MAAa,oDAA+D,EACzE,OAAO;CACN,QAAQ,EAAE,SAAS,CAAC,UAAU;CAC9B,eAAe,EAAE,QAAQ,CAAC,UAAU;CACpC,aAAa,EAAE,QAAQ,CAAC,UAAU;CAClC,YAAY,EAAE,QAAQ,CAAC,UAAU;CACjC,IAAI,EAAE,QAAQ,CAAC,UAAU;CACzB,OAAO,EAAE,MAAM,EAAE,WAAW,iCAAiC,CAAC,CAAC,UAAU;CACzE,WAAW,EAAE,QAAQ,CAAC,UAAU;CACjC,CAAC,CACD,WAAU,OAAM;CACf,QAAQ,EAAE;CACV,eAAe,EAAE;CACjB,aAAa,EAAE;CACf,YAAY,EAAE;CACd,IAAI,EAAE;CACN,OAAO,EAAE;CACT,YAAY,EAAE;CACf,EAAE;AAEL,MAAa,wCAAmD,EAC7D,OAAO;CACN,QAAQ,EAAE,SAAS,CAAC,UAAU;CAC9B,aAAa,EAAE,QAAQ,CAAC,UAAU;CAClC,QAAQ,EAAE,MAAM,EAAE,WAAW,iCAAiC,CAAC,CAAC,UAAU;CAC1E,YAAY,EAAE,QAAQ,CAAC,UAAU;CACjC,IAAI,EAAE,QAAQ,CAAC,UAAU;CACzB,MAAM,EAAE,WAAW,yBAAyB,CAAC,UAAU;CACvD,OAAO,EAAE,MAAM,EAAE,WAAW,iCAAiC,CAAC,CAAC,UAAU;CACzE,UAAU,EAAE,QAAQ,CAAC,UAAU;CAC/B,WAAW,EAAE,QAAQ,CAAC,UAAU;CACjC,CAAC,CACD,WAAU,OAAM;CACf,QAAQ,EAAE;CACV,aAAa,EAAE;CACf,QAAQ,EAAE;CACV,YAAY,EAAE;CACd,IAAI,EAAE;CACN,MAAM,EAAE;CACR,OAAO,EAAE;CACT,UAAU,EAAE;CACZ,YAAY,EAAE;CACf,EAAE;AAEL,MAAa,kCAA6C,EACvD,OAAO;CACN,aAAa,EAAE,QAAQ,CAAC,UAAU;CAClC,cAAc,EAAE,MAAM,EAAE,WAAW,0BAA0B,CAAC,CAAC,UAAU;CACzE,YAAY,EAAE,QAAQ,CAAC,UAAU;CACjC,QAAQ,EAAE,MAAM,EAAE,WAAW,0BAA0B,CAAC,CAAC,UAAU;CACnE,IAAI,EAAE,QAAQ,CAAC,UAAU;CACzB,SAAS,EAAE,MAAM,EAAE,WAAW,0BAA0B,CAAC,CAAC,UAAU;CACpE,MAAM,EAAE,WAAW,0BAA0B,CAAC,UAAU;CACxD,OAAO,EAAE,MAAM,EAAE,WAAW,0BAA0B,CAAC,CAAC,UAAU;CAClE,SAAS,EAAE,MAAM,EAAE,QAAQ,CAAC,CAAC,UAAU;CACxC,CAAC,CACD,WAAU,OAAM;CACf,aAAa,EAAE;CACf,cAAc,EAAE;CAChB,YAAY,EAAE;CACd,QAAQ,EAAE;CACV,IAAI,EAAE;CACN,SAAS,EAAE;CACX,MAAM,EAAE;CACR,OAAO,EAAE;CACT,SAAS,EAAE;CACZ,EAAE;AAEL,MAAa,6CAAwD,EAClE,OAAO;CACN,QAAQ,EAAE,SAAS,CAAC,UAAU;CAC9B,eAAe,EAAE,QAAQ,CAAC,UAAU;CACpC,aAAa,EAAE,QAAQ,CAAC,UAAU;CAClC,cAAc,EAAE,MAAM,EAAE,WAAW,0BAA0B,CAAC,CAAC,UAAU;CACzE,YAAY,EAAE,QAAQ,CAAC,UAAU;CACjC,QAAQ,EAAE,MAAM,EAAE,WAAW,0BAA0B,CAAC,CAAC,UAAU;CACnE,IAAI,EAAE,QAAQ,CAAC,UAAU;CACzB,OAAO,EAAE,MAAM,EAAE,WAAW,0BAA0B,CAAC,CAAC,UAAU;CAClE,SAAS,EAAE,MAAM,EAAE,QAAQ,CAAC,CAAC,UAAU;CACxC,CAAC,CACD,WAAU,OAAM;CACf,QAAQ,EAAE;CACV,eAAe,EAAE;CACjB,aAAa,EAAE;CACf,cAAc,EAAE;CAChB,YAAY,EAAE;CACd,QAAQ,EAAE;CACV,IAAI,EAAE;CACN,OAAO,EAAE;CACT,SAAS,EAAE;CACZ,EAAE;AAEL,MAAa,iCAA4C,EACtD,OAAO;CACN,QAAQ,EAAE,SAAS,CAAC,UAAU;CAC9B,aAAa,EAAE,QAAQ,CAAC,UAAU;CAClC,QAAQ,EAAE,MAAM,EAAE,WAAW,0BAA0B,CAAC,CAAC,UAAU;CACnE,cAAc,EAAE,MAAM,EAAE,WAAW,0BAA0B,CAAC,CAAC,UAAU;CACzE,YAAY,EAAE,QAAQ,CAAC,UAAU;CACjC,QAAQ,EAAE,MAAM,EAAE,WAAW,0BAA0B,CAAC,CAAC,UAAU;CACnE,IAAI,EAAE,QAAQ,CAAC,UAAU;CACzB,MAAM,EAAE,WAAW,kBAAkB,CAAC,UAAU;CAChD,OAAO,EAAE,MAAM,EAAE,WAAW,0BAA0B,CAAC,CAAC,UAAU;CAClE,SAAS,EAAE,MAAM,EAAE,QAAQ,CAAC,CAAC,UAAU;CACvC,UAAU,EAAE,QAAQ,CAAC,UAAU;CAChC,CAAC,CACD,WAAU,OAAM;CACf,QAAQ,EAAE;CACV,aAAa,EAAE;CACf,QAAQ,EAAE;CACV,cAAc,EAAE;CAChB,YAAY,EAAE;CACd,QAAQ,EAAE;CACV,IAAI,EAAE;CACN,MAAM,EAAE;CACR,OAAO,EAAE;CACT,SAAS,EAAE;CACX,UAAU,EAAE;CACb,EAAE"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@databricks/sdk-scim",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.40.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -33,9 +33,9 @@
|
|
|
33
33
|
"directory": "packages/scim"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@databricks/sdk-auth": ">=0.
|
|
37
|
-
"@databricks/sdk-core": ">=0.
|
|
38
|
-
"@databricks/sdk-options": ">=0.
|
|
36
|
+
"@databricks/sdk-auth": ">=0.40.0 <1.0.0",
|
|
37
|
+
"@databricks/sdk-core": ">=0.40.0 <1.0.0",
|
|
38
|
+
"@databricks/sdk-options": ">=0.40.0 <1.0.0",
|
|
39
39
|
"@js-temporal/polyfill": "^0.5.0",
|
|
40
40
|
"json-bigint": "^1.0.0",
|
|
41
41
|
"zod": "^4.3.6"
|