@carthooks/arcubase-cli 0.1.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/bundle/arcubase-admin.mjs +9875 -0
- package/bundle/arcubase.mjs +9875 -0
- package/dist/bin/arcubase-admin.d.ts +2 -0
- package/dist/bin/arcubase-admin.d.ts.map +1 -0
- package/dist/bin/arcubase-admin.js +22 -0
- package/dist/bin/arcubase.d.ts +2 -0
- package/dist/bin/arcubase.d.ts.map +1 -0
- package/dist/bin/arcubase.js +22 -0
- package/dist/generated/command_registry.generated.d.ts +3072 -0
- package/dist/generated/command_registry.generated.d.ts.map +1 -0
- package/dist/generated/command_registry.generated.js +4587 -0
- package/dist/generated/type_index.generated.d.ts +496 -0
- package/dist/generated/type_index.generated.d.ts.map +1 -0
- package/dist/generated/type_index.generated.js +502 -0
- package/dist/generated/zod_registry.generated.d.ts +356 -0
- package/dist/generated/zod_registry.generated.d.ts.map +1 -0
- package/dist/generated/zod_registry.generated.js +483 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +4 -0
- package/dist/runtime/argv.d.ts +8 -0
- package/dist/runtime/argv.d.ts.map +1 -0
- package/dist/runtime/argv.js +31 -0
- package/dist/runtime/body_loader.d.ts +3 -0
- package/dist/runtime/body_loader.d.ts.map +1 -0
- package/dist/runtime/body_loader.js +26 -0
- package/dist/runtime/command_registry.d.ts +9 -0
- package/dist/runtime/command_registry.d.ts.map +1 -0
- package/dist/runtime/command_registry.js +14 -0
- package/dist/runtime/env.d.ts +14 -0
- package/dist/runtime/env.d.ts.map +1 -0
- package/dist/runtime/env.js +42 -0
- package/dist/runtime/errors.d.ts +23 -0
- package/dist/runtime/errors.d.ts.map +1 -0
- package/dist/runtime/errors.js +18 -0
- package/dist/runtime/execute.d.ts +17 -0
- package/dist/runtime/execute.d.ts.map +1 -0
- package/dist/runtime/execute.js +183 -0
- package/dist/runtime/http.d.ts +4 -0
- package/dist/runtime/http.d.ts.map +1 -0
- package/dist/runtime/http.js +21 -0
- package/dist/runtime/output.d.ts +2 -0
- package/dist/runtime/output.d.ts.map +1 -0
- package/dist/runtime/output.js +3 -0
- package/dist/runtime/paths.d.ts +4 -0
- package/dist/runtime/paths.d.ts.map +1 -0
- package/dist/runtime/paths.js +8 -0
- package/dist/runtime/zod_registry.d.ts +10 -0
- package/dist/runtime/zod_registry.d.ts.map +1 -0
- package/dist/runtime/zod_registry.js +50 -0
- package/dist/tests/bootstrap.test.d.ts +2 -0
- package/dist/tests/bootstrap.test.d.ts.map +1 -0
- package/dist/tests/bootstrap.test.js +59 -0
- package/dist/tests/command_registry.test.d.ts +2 -0
- package/dist/tests/command_registry.test.d.ts.map +1 -0
- package/dist/tests/command_registry.test.js +22 -0
- package/dist/tests/execute_validation.test.d.ts +2 -0
- package/dist/tests/execute_validation.test.d.ts.map +1 -0
- package/dist/tests/execute_validation.test.js +41 -0
- package/dist/tests/help.test.d.ts +2 -0
- package/dist/tests/help.test.d.ts.map +1 -0
- package/dist/tests/help.test.js +22 -0
- package/dist/tests/zod_registry.test.d.ts +2 -0
- package/dist/tests/zod_registry.test.d.ts.map +1 -0
- package/dist/tests/zod_registry.test.js +26 -0
- package/package.json +46 -0
- package/sdk-dist/api/admin/app-entity-share.ts +52 -0
- package/sdk-dist/api/admin/app.ts +187 -0
- package/sdk-dist/api/admin/automate-rule.ts +59 -0
- package/sdk-dist/api/admin/business-hooks.ts +17 -0
- package/sdk-dist/api/admin/config.ts +12 -0
- package/sdk-dist/api/admin/dashboard.ts +88 -0
- package/sdk-dist/api/admin/dataset.ts +133 -0
- package/sdk-dist/api/admin/departments.ts +223 -0
- package/sdk-dist/api/admin/developer.ts +126 -0
- package/sdk-dist/api/admin/entity-tags.ts +71 -0
- package/sdk-dist/api/admin/entity.ts +188 -0
- package/sdk-dist/api/admin/extension.ts +19 -0
- package/sdk-dist/api/admin/index.ts +21 -0
- package/sdk-dist/api/admin/ingress.ts +117 -0
- package/sdk-dist/api/admin/integration.ts +64 -0
- package/sdk-dist/api/admin/kiosk-flow.ts +67 -0
- package/sdk-dist/api/admin/print-template-background.ts +43 -0
- package/sdk-dist/api/admin/print-templates.ts +60 -0
- package/sdk-dist/api/admin/tenant.ts +231 -0
- package/sdk-dist/api/admin/workflow.ts +51 -0
- package/sdk-dist/api/kiosk/index.ts +4 -0
- package/sdk-dist/api/kiosk/starter.ts +34 -0
- package/sdk-dist/api/kiosk/ui.ts +79 -0
- package/sdk-dist/api/open/api.ts +11 -0
- package/sdk-dist/api/open/index.ts +3 -0
- package/sdk-dist/api/shared-link/form.ts +103 -0
- package/sdk-dist/api/shared-link/index.ts +3 -0
- package/sdk-dist/api/user/common.ts +159 -0
- package/sdk-dist/api/user/context.ts +10 -0
- package/sdk-dist/api/user/copilot.ts +20 -0
- package/sdk-dist/api/user/dashboard.ts +43 -0
- package/sdk-dist/api/user/entity.ts +213 -0
- package/sdk-dist/api/user/flow.ts +20 -0
- package/sdk-dist/api/user/global-action.ts +128 -0
- package/sdk-dist/api/user/index.ts +12 -0
- package/sdk-dist/api/user/kiosk.ts +12 -0
- package/sdk-dist/api/user/profile.ts +57 -0
- package/sdk-dist/api/user/workflow.ts +186 -0
- package/sdk-dist/generated/command_registry.generated.ts +4603 -0
- package/sdk-dist/generated/type_index.generated.ts +503 -0
- package/sdk-dist/generated/zod_registry.generated.ts +713 -0
- package/sdk-dist/types/app-user.ts +0 -0
- package/sdk-dist/types/app.ts +182 -0
- package/sdk-dist/types/auth.ts +174 -0
- package/sdk-dist/types/automate-rule.ts +100 -0
- package/sdk-dist/types/business-hooks.ts +37 -0
- package/sdk-dist/types/common.ts +676 -0
- package/sdk-dist/types/copilot.ts +34 -0
- package/sdk-dist/types/dashboard.ts +122 -0
- package/sdk-dist/types/dataset.ts +168 -0
- package/sdk-dist/types/departments.ts +351 -0
- package/sdk-dist/types/developer.ts +190 -0
- package/sdk-dist/types/entity.ts +400 -0
- package/sdk-dist/types/extension.ts +15 -0
- package/sdk-dist/types/global-action.ts +206 -0
- package/sdk-dist/types/index.ts +26 -0
- package/sdk-dist/types/ingress.ts +173 -0
- package/sdk-dist/types/kiosk-starter.ts +46 -0
- package/sdk-dist/types/kiosk-ui.ts +94 -0
- package/sdk-dist/types/oauth-authorize.ts +52 -0
- package/sdk-dist/types/oauth.ts +33 -0
- package/sdk-dist/types/openapi.ts +24 -0
- package/sdk-dist/types/platform-setup.ts +26 -0
- package/sdk-dist/types/shared-link.ts +41 -0
- package/sdk-dist/types/tenant.ts +340 -0
- package/sdk-dist/types/upload.ts +0 -0
- package/sdk-dist/types/user-action.ts +871 -0
- package/sdk-dist/types/user-flow.ts +90 -0
- package/sdk-dist/types/widgets.ts +115 -0
- package/sdk-dist/types/workflow.ts +162 -0
- package/src/bin/arcubase-admin.ts +23 -0
- package/src/bin/arcubase.ts +23 -0
- package/src/generated/command_registry.generated.ts +4603 -0
- package/src/generated/type_index.generated.ts +503 -0
- package/src/generated/zod_registry.generated.ts +713 -0
- package/src/index.ts +4 -0
- package/src/runtime/argv.ts +39 -0
- package/src/runtime/body_loader.ts +26 -0
- package/src/runtime/command_registry.ts +22 -0
- package/src/runtime/env.ts +60 -0
- package/src/runtime/errors.ts +41 -0
- package/src/runtime/execute.ts +206 -0
- package/src/runtime/http.ts +23 -0
- package/src/runtime/output.ts +3 -0
- package/src/runtime/paths.ts +8 -0
- package/src/runtime/zod_registry.ts +53 -0
- package/src/tests/bootstrap.test.ts +67 -0
- package/src/tests/command_registry.test.ts +27 -0
- package/src/tests/execute_validation.test.ts +50 -0
- package/src/tests/help.test.ts +25 -0
- package/src/tests/zod_registry.test.ts +33 -0
|
@@ -0,0 +1,356 @@
|
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
export declare const AppCreateByTenantsReqVOSchema: z.ZodTypeAny;
|
|
3
|
+
export declare const AppCreateEntityReqVOSchema: z.ZodTypeAny;
|
|
4
|
+
export declare const AppCreateEntityShareReqVOSchema: z.ZodTypeAny;
|
|
5
|
+
export declare const AppDeleteEntityShareReqVOSchema: z.ZodTypeAny;
|
|
6
|
+
export declare const I18NTextSchema: z.ZodTypeAny;
|
|
7
|
+
export declare const PermitColumnSchema: z.ZodTypeAny;
|
|
8
|
+
export declare const PermitSearchColumnSchema: z.ZodTypeAny;
|
|
9
|
+
export declare const PermitEntityPropSchema: z.ZodTypeAny;
|
|
10
|
+
export declare const PermitValueFromSchema: z.ZodTypeAny;
|
|
11
|
+
export declare const PermitRecordConditionSchema: z.ZodTypeAny;
|
|
12
|
+
export declare const PermitConditionSetSchema: z.ZodTypeAny;
|
|
13
|
+
export declare const PermitEntityListTabSchema: z.ZodTypeAny;
|
|
14
|
+
export declare const PermitEntityListWidgetSchema: z.ZodTypeAny;
|
|
15
|
+
export declare const PermitEntityListOptionsSchema: z.ZodTypeAny;
|
|
16
|
+
export declare const PermitFieldPermitSchema: z.ZodTypeAny;
|
|
17
|
+
export declare const PermitPolicySchema: z.ZodTypeAny;
|
|
18
|
+
export declare const PermitUserScopeSchema: z.ZodTypeAny;
|
|
19
|
+
export declare const EntityIngressOptionsSchema: z.ZodTypeAny;
|
|
20
|
+
export declare const AppIngressCreateReqVOSchema: z.ZodTypeAny;
|
|
21
|
+
export declare const AppIngressBlockVOSchema: z.ZodTypeAny;
|
|
22
|
+
export declare const AppIngressUpdateBlocksReqVOSchema: z.ZodTypeAny;
|
|
23
|
+
export declare const AppIngressUpdateReqVOSchema: z.ZodTypeAny;
|
|
24
|
+
export declare const WidgetsTypeCodeSchema: z.ZodTypeAny;
|
|
25
|
+
export declare const WidgetsTypeSchema: z.ZodTypeAny;
|
|
26
|
+
export declare const AppNewWidgetsReqVOSchema: z.ZodTypeAny;
|
|
27
|
+
export declare const CubeDimensionSchema: z.ZodTypeAny;
|
|
28
|
+
export declare const CubeMeasureAggregateSchema: z.ZodTypeAny;
|
|
29
|
+
export declare const CubeMeasureSchema: z.ZodTypeAny;
|
|
30
|
+
export declare const AppPreviewWidgetsDataReqVOSchema: z.ZodTypeAny;
|
|
31
|
+
export declare const AppRenameReqVOSchema: z.ZodTypeAny;
|
|
32
|
+
export declare const DashboardMenuItemVOSchema: z.ZodTypeAny;
|
|
33
|
+
export declare const IngressItemSchema: z.ZodTypeAny;
|
|
34
|
+
export declare const IngressGroupReqVOSchema: z.ZodTypeAny;
|
|
35
|
+
export declare const AppSaveSiteMapsReqVOSchema: z.ZodTypeAny;
|
|
36
|
+
export declare const GormDeletedAtSchema: z.ZodTypeAny;
|
|
37
|
+
export declare const AppOptionsSchema: z.ZodTypeAny;
|
|
38
|
+
export declare const AppUpdateAppReqVOSchema: z.ZodTypeAny;
|
|
39
|
+
export declare const AppUpdateI18NReqVOSchema: z.ZodTypeAny;
|
|
40
|
+
export declare const AppUpdateI18nReqVOSchema: z.ZodTypeAny;
|
|
41
|
+
export declare const WidgetsListViewOptionsSchema: z.ZodTypeAny;
|
|
42
|
+
export declare const AppUpdateWidgetsIngressOptionsReqVOSchema: z.ZodTypeAny;
|
|
43
|
+
export declare const ChartOptionSchema: z.ZodTypeAny;
|
|
44
|
+
export declare const WidgetsOptionSchema: z.ZodTypeAny;
|
|
45
|
+
export declare const AppUpdateWidgetsReqVOSchema: z.ZodTypeAny;
|
|
46
|
+
export declare const PermitActionSchema: z.ZodTypeAny;
|
|
47
|
+
export declare const ActionFormulaExprSchema: z.ZodTypeAny;
|
|
48
|
+
export declare const ActionFieldValueSchema: z.ZodTypeAny;
|
|
49
|
+
export declare const ActionActionSchema: z.ZodTypeAny;
|
|
50
|
+
export declare const PermitEntityEventSchema: z.ZodTypeAny;
|
|
51
|
+
export declare const AutomateRuleCreateReqVOSchema: z.ZodTypeAny;
|
|
52
|
+
export declare const AutomateRuleUpdateReqVOSchema: z.ZodTypeAny;
|
|
53
|
+
export declare const ChangePasswordReqVOSchema: z.ZodTypeAny;
|
|
54
|
+
export declare const CommonPaginationSchema: z.ZodTypeAny;
|
|
55
|
+
export declare const CommonQueryFormVOSchema: z.ZodTypeAny;
|
|
56
|
+
export declare const CopilotMessageSchema: z.ZodTypeAny;
|
|
57
|
+
export declare const CopilotSendMessageReqVOSchema: z.ZodTypeAny;
|
|
58
|
+
export declare const DashboardCreateReqVOSchema: z.ZodTypeAny;
|
|
59
|
+
export declare const LayoutPositionSchema: z.ZodTypeAny;
|
|
60
|
+
export declare const DashboardUpdateLayoutReqVOSchema: z.ZodTypeAny;
|
|
61
|
+
export declare const DashboardUpdateOptionsReqVOSchema: z.ZodTypeAny;
|
|
62
|
+
export declare const DashboardUpdateTitleReqVOSchema: z.ZodTypeAny;
|
|
63
|
+
export declare const DatasetCreateDatasetReqVOSchema: z.ZodTypeAny;
|
|
64
|
+
export declare const DatasetRowSchema: z.ZodTypeAny;
|
|
65
|
+
export declare const DatasetCreateNodeReqVOSchema: z.ZodTypeAny;
|
|
66
|
+
export declare const DatasetImportReqVOSchema: z.ZodTypeAny;
|
|
67
|
+
export declare const DatasetMoveReqVOSchema: z.ZodTypeAny;
|
|
68
|
+
export declare const DatasetUpdateReqVOSchema: z.ZodTypeAny;
|
|
69
|
+
export declare const DepartmentsAddActorReqVOSchema: z.ZodTypeAny;
|
|
70
|
+
export declare const DepartmentsAddReqVOSchema: z.ZodTypeAny;
|
|
71
|
+
export declare const DepartmentsCreateServiceAccountReqVOSchema: z.ZodTypeAny;
|
|
72
|
+
export declare const DepartmentsDeleteActorReqVOSchema: z.ZodTypeAny;
|
|
73
|
+
export declare const DepartmentsEmployeeAccountChangePasswordReqVOSchema: z.ZodTypeAny;
|
|
74
|
+
export declare const DepartmentsEmployeeAccountCreateReqVOSchema: z.ZodTypeAny;
|
|
75
|
+
export declare const DepartmentsGetOrganizationUsersReqVOSchema: z.ZodTypeAny;
|
|
76
|
+
export declare const DepartmentsInviteCodeHistoryReqVOSchema: z.ZodTypeAny;
|
|
77
|
+
export declare const DepartmentsInviteCodeSwitchReqVOSchema: z.ZodTypeAny;
|
|
78
|
+
export declare const DepartmentsInviteOneByOneReqVOSchema: z.ZodTypeAny;
|
|
79
|
+
export declare const DepartmentsMakeLinkReqVOSchema: z.ZodTypeAny;
|
|
80
|
+
export declare const DepartmentsRelocateReqVOSchema: z.ZodTypeAny;
|
|
81
|
+
export declare const DepartmentsRenameReqVOSchema: z.ZodTypeAny;
|
|
82
|
+
export declare const DepartmentsResendInviteReqVOSchema: z.ZodTypeAny;
|
|
83
|
+
export declare const DepartmentsSetDeptPolicyReqVOSchema: z.ZodTypeAny;
|
|
84
|
+
export declare const DepartmentsUpdateUserReqVOSchema: z.ZodTypeAny;
|
|
85
|
+
export declare const DeveloperClientCreateReqVOSchema: z.ZodTypeAny;
|
|
86
|
+
export declare const DeveloperClientUpdateReqVOSchema: z.ZodTypeAny;
|
|
87
|
+
export declare const DeveloperHookletCreateReqVOSchema: z.ZodTypeAny;
|
|
88
|
+
export declare const DeveloperHookletUpdateReqVOSchema: z.ZodTypeAny;
|
|
89
|
+
export declare const EntityAIImportConfigReqVOSchema: z.ZodTypeAny;
|
|
90
|
+
export declare const EntityCommentStorageTypeVOSchema: z.ZodTypeAny;
|
|
91
|
+
export declare const EntityAddCommentReqVOSchema: z.ZodTypeAny;
|
|
92
|
+
export declare const EntityBulkUpdateActionVOSchema: z.ZodTypeAny;
|
|
93
|
+
export declare const EntityBulkUpdateFieldVOSchema: z.ZodTypeAny;
|
|
94
|
+
export declare const EntityBulkUpdateReqVOSchema: z.ZodTypeAny;
|
|
95
|
+
export declare const EntityBulkUpdateSaveAsReqVOSchema: z.ZodTypeAny;
|
|
96
|
+
export declare const EntityCloneReqVOSchema: z.ZodTypeAny;
|
|
97
|
+
export declare const MagicStringPartTypeSchema: z.ZodTypeAny;
|
|
98
|
+
export declare const MagicStringPartSchema: z.ZodTypeAny;
|
|
99
|
+
export declare const MagicStringSchema: z.ZodTypeAny;
|
|
100
|
+
export declare const AiOptionsSchema: z.ZodTypeAny;
|
|
101
|
+
export declare const ApiOptionsSchema: z.ZodTypeAny;
|
|
102
|
+
export declare const ApiEndpointParamSchema: z.ZodTypeAny;
|
|
103
|
+
export declare const ApiEndpointSchema: z.ZodTypeAny;
|
|
104
|
+
export declare const EntityFrontEventSchema: z.ZodTypeAny;
|
|
105
|
+
export declare const EntityDebugInvokeHookReqVOSchema: z.ZodTypeAny;
|
|
106
|
+
export declare const EntityDelCommentReqVOSchema: z.ZodTypeAny;
|
|
107
|
+
export declare const EntityDoActionCommentVOSchema: z.ZodTypeAny;
|
|
108
|
+
export declare const EntityDoActionUserScopeVOSchema: z.ZodTypeAny;
|
|
109
|
+
export declare const EntityDoActionReqVOSchema: z.ZodTypeAny;
|
|
110
|
+
export declare const EntityDoFsmActionReqVOSchema: z.ZodTypeAny;
|
|
111
|
+
export declare const EntityExportReqVOSchema: z.ZodTypeAny;
|
|
112
|
+
export declare const EntityImportPrepareReqVOSchema: z.ZodTypeAny;
|
|
113
|
+
export declare const EntityImportReqVOSchema: z.ZodTypeAny;
|
|
114
|
+
export declare const EntityImportActionVOSchema: z.ZodTypeAny;
|
|
115
|
+
export declare const InlineSchema1Schema: z.ZodTypeAny;
|
|
116
|
+
export declare const EntitySelectionQueryOrderVOSchema: z.ZodTypeAny;
|
|
117
|
+
export declare const EntitySelectionVOSchema: z.ZodTypeAny;
|
|
118
|
+
export declare const EntityInvokeBatchOperatorDataVOSchema: z.ZodTypeAny;
|
|
119
|
+
export declare const EntityInvokeBatchOperatorReqVOSchema: z.ZodTypeAny;
|
|
120
|
+
export declare const InvokeRequestVOSchema: z.ZodTypeAny;
|
|
121
|
+
export declare const InlineSchema2Schema: z.ZodTypeAny;
|
|
122
|
+
export declare const KioskScreenSchema: z.ZodTypeAny;
|
|
123
|
+
export declare const KioskConfigSchema: z.ZodTypeAny;
|
|
124
|
+
export declare const EntityKioskFlowCreateReqVOSchema: z.ZodTypeAny;
|
|
125
|
+
export declare const EntityKioskFlowUpdateReqVOSchema: z.ZodTypeAny;
|
|
126
|
+
export declare const AssetsSchema: z.ZodTypeAny;
|
|
127
|
+
export declare const EntityPrintTemplatesCreateReqVOSchema: z.ZodTypeAny;
|
|
128
|
+
export declare const EntityPrintTemplatesUpdateReqVOSchema: z.ZodTypeAny;
|
|
129
|
+
export declare const EntityPutQueryKeeperReqVOSchema: z.ZodTypeAny;
|
|
130
|
+
export declare const EntityQueryFilterReqVOSchema: z.ZodTypeAny;
|
|
131
|
+
export declare const EntityQueryLinkToValuesReqVOSchema: z.ZodTypeAny;
|
|
132
|
+
export declare const EntityQueryRelationReqVOSchema: z.ZodTypeAny;
|
|
133
|
+
export declare const EntityQueryOrderVOSchema: z.ZodTypeAny;
|
|
134
|
+
export declare const EntityQueryReqVOSchema: z.ZodTypeAny;
|
|
135
|
+
export declare const EntityResolveWorkflowReqVOSchema: z.ZodTypeAny;
|
|
136
|
+
export declare const EntitySaveCustomKeysFieldVOSchema: z.ZodTypeAny;
|
|
137
|
+
export declare const EntitySaveCustomKeysReqVOSchema: z.ZodTypeAny;
|
|
138
|
+
export declare const EntitySaveNameReqVOSchema: z.ZodTypeAny;
|
|
139
|
+
export declare const EntitySerialUpdaterVOSchema: z.ZodTypeAny;
|
|
140
|
+
export declare const FieldsSchema: z.ZodTypeAny;
|
|
141
|
+
export declare const ButtonSchema: z.ZodTypeAny;
|
|
142
|
+
export declare const CustomActionSchema: z.ZodTypeAny;
|
|
143
|
+
export declare const NotificationPayloadModeSchema: z.ZodTypeAny;
|
|
144
|
+
export declare const NotificationNotificationTypeSchema: z.ZodTypeAny;
|
|
145
|
+
export declare const EntityOptionsSchema: z.ZodTypeAny;
|
|
146
|
+
export declare const EntitySaveReqVOSchema: z.ZodTypeAny;
|
|
147
|
+
export declare const EntitySelectionActionReqVOSchema: z.ZodTypeAny;
|
|
148
|
+
export declare const EntitySerialInitValReqVOSchema: z.ZodTypeAny;
|
|
149
|
+
export declare const EntityTestNotificationReqVOSchema: z.ZodTypeAny;
|
|
150
|
+
export declare const EntityUpdateButtonsReqVOSchema: z.ZodTypeAny;
|
|
151
|
+
export declare const NotificationConfigSchema: z.ZodTypeAny;
|
|
152
|
+
export declare const EntityUpdateNotificationsReqVOSchema: z.ZodTypeAny;
|
|
153
|
+
export declare const EntityUpdateOptionsReqVOSchema: z.ZodTypeAny;
|
|
154
|
+
export declare const EntityUpdateReqVOSchema: z.ZodTypeAny;
|
|
155
|
+
export declare const EntityUpdateSuccessScreenReqVOSchema: z.ZodTypeAny;
|
|
156
|
+
export declare const EntityValidateUniqFieldVOSchema: z.ZodTypeAny;
|
|
157
|
+
export declare const EntityValidateUniqReqVOSchema: z.ZodTypeAny;
|
|
158
|
+
export declare const ActionBulkUpdateActionSchema: z.ZodTypeAny;
|
|
159
|
+
export declare const ActionBulkUpdateSchema: z.ZodTypeAny;
|
|
160
|
+
export declare const WorkflowActionConfigSchema: z.ZodTypeAny;
|
|
161
|
+
export declare const WorkflowVoteTypeSchema: z.ZodTypeAny;
|
|
162
|
+
export declare const NotificationWebhookConfigSchema: z.ZodTypeAny;
|
|
163
|
+
export declare const WorkflowConfigNodeSchema: z.ZodTypeAny;
|
|
164
|
+
export declare const WorkflowConfigDiagramSchema: z.ZodTypeAny;
|
|
165
|
+
export declare const WorkflowAutoApproveRuleSchema: z.ZodTypeAny;
|
|
166
|
+
export declare const WorkflowRetractRuleSchema: z.ZodTypeAny;
|
|
167
|
+
export declare const WorkflowSLATriggerSchema: z.ZodTypeAny;
|
|
168
|
+
export declare const WorkflowSLAConfigSchema: z.ZodTypeAny;
|
|
169
|
+
export declare const WorkflowOptionsSchema: z.ZodTypeAny;
|
|
170
|
+
export declare const EntityWorkflowDeployReqVOSchema: z.ZodTypeAny;
|
|
171
|
+
export declare const EntityWorkflowUpdateReqVOSchema: z.ZodTypeAny;
|
|
172
|
+
export declare const EntityUtilsQueryOrderSchema: z.ZodTypeAny;
|
|
173
|
+
export declare const FetchWidgetsDataReqVOSchema: z.ZodTypeAny;
|
|
174
|
+
export declare const GetOrganizationTreeReqVOSchema: z.ZodTypeAny;
|
|
175
|
+
export declare const GetOrganizationUsersReqVOSchema: z.ZodTypeAny;
|
|
176
|
+
export declare const GetSubformItemsReqVOSchema: z.ZodTypeAny;
|
|
177
|
+
export declare const GetUploadTokenReqVOSchema: z.ZodTypeAny;
|
|
178
|
+
export declare const GlobalActionAcceptInvitationLinkReqVOSchema: z.ZodTypeAny;
|
|
179
|
+
export declare const GlobalActionAcceptInvitationReqVOSchema: z.ZodTypeAny;
|
|
180
|
+
export declare const GlobalActionCreateTenantReqVOSchema: z.ZodTypeAny;
|
|
181
|
+
export declare const GlobalActionEmailVerifyReqVOSchema: z.ZodTypeAny;
|
|
182
|
+
export declare const GlobalActionEmailVerifyResendReqVOSchema: z.ZodTypeAny;
|
|
183
|
+
export declare const GlobalActionProfileSetEmailReqVOSchema: z.ZodTypeAny;
|
|
184
|
+
export declare const GlobalActionSetDefaultTenantReqVOSchema: z.ZodTypeAny;
|
|
185
|
+
export declare const PermitFilterCondSchema: z.ZodTypeAny;
|
|
186
|
+
export declare const PermitFilterSchema: z.ZodTypeAny;
|
|
187
|
+
export declare const PermitEntityUserTabSchema: z.ZodTypeAny;
|
|
188
|
+
export declare const IngressSetOptionsTabberReqVOSchema: z.ZodTypeAny;
|
|
189
|
+
export declare const InsertPrepareReqVOSchema: z.ZodTypeAny;
|
|
190
|
+
export declare const InsertReqVOSchema: z.ZodTypeAny;
|
|
191
|
+
export declare const MobileUploadCheckReqVOSchema: z.ZodTypeAny;
|
|
192
|
+
export declare const MobileUploadReqVOSchema: z.ZodTypeAny;
|
|
193
|
+
export declare const PrintTemplateBackgroundUploadReqVOSchema: z.ZodTypeAny;
|
|
194
|
+
export declare const TenantConfigGetReqVOSchema: z.ZodTypeAny;
|
|
195
|
+
export declare const TenantConfigUpdateAuthBgImageReqVOSchema: z.ZodTypeAny;
|
|
196
|
+
export declare const TenantConfigUpdateAuthReqVOSchema: z.ZodTypeAny;
|
|
197
|
+
export declare const TenantConfigUpdateEmailReqVOSchema: z.ZodTypeAny;
|
|
198
|
+
export declare const TenantConfigUpdateIconReqVOSchema: z.ZodTypeAny;
|
|
199
|
+
export declare const TenantConfigUpdateLogoReqVOSchema: z.ZodTypeAny;
|
|
200
|
+
export declare const TenantUserMetaDataPolicySchema: z.ZodTypeAny;
|
|
201
|
+
export declare const TenantUserMetaDataSchema: z.ZodTypeAny;
|
|
202
|
+
export declare const TenantConfigUpdateMetaReqVOSchema: z.ZodTypeAny;
|
|
203
|
+
export declare const TenantConfigUpdateNameReqVOSchema: z.ZodTypeAny;
|
|
204
|
+
export declare const TenantConfigUpdateReqVOSchema: z.ZodTypeAny;
|
|
205
|
+
export declare const TenantCreateCustomDomainReqVOSchema: z.ZodTypeAny;
|
|
206
|
+
export declare const TenantKioskGroupCreateReqVOSchema: z.ZodTypeAny;
|
|
207
|
+
export declare const TenantKioskGroupQueryReqVOSchema: z.ZodTypeAny;
|
|
208
|
+
export declare const TenantKioskGroupUpdateReqVOSchema: z.ZodTypeAny;
|
|
209
|
+
export declare const TenantVerifyCustomDomainOwnerReqVOSchema: z.ZodTypeAny;
|
|
210
|
+
export declare const UpdateAvatarReqVOSchema: z.ZodTypeAny;
|
|
211
|
+
export declare const UploadPreviewReqVOSchema: z.ZodTypeAny;
|
|
212
|
+
export declare const WorkflowTransitionTypeSchema: z.ZodTypeAny;
|
|
213
|
+
export declare const UserFlowQueryReqVOSchema: z.ZodTypeAny;
|
|
214
|
+
export declare const SqlNullTimeSchema: z.ZodTypeAny;
|
|
215
|
+
export declare const TenantSchema: z.ZodTypeAny;
|
|
216
|
+
export declare const PronounsTypeSchema: z.ZodTypeAny;
|
|
217
|
+
export declare const UserSchema: z.ZodTypeAny;
|
|
218
|
+
export declare const TenantUserSchema: z.ZodTypeAny;
|
|
219
|
+
export declare const UserProfileUpdateReqVOSchema: z.ZodTypeAny;
|
|
220
|
+
export declare const InlineSchema3Schema: z.ZodTypeAny;
|
|
221
|
+
export declare const InlineSchema4Schema: z.ZodTypeAny;
|
|
222
|
+
export declare const InlineSchema5Schema: z.ZodTypeAny;
|
|
223
|
+
export declare const InlineSchema6Schema: z.ZodTypeAny;
|
|
224
|
+
export declare const generatedRequestTypes: readonly ["AppCreateByTenantsReqVO", "AppCreateEntityReqVO", "AppCreateEntityShareReqVO", "AppDeleteEntityShareReqVO", "AppIngressCreateReqVO", "AppIngressUpdateBlocksReqVO", "AppIngressUpdateReqVO", "AppNewWidgetsReqVO", "AppPreviewWidgetsDataReqVO", "AppRenameReqVO", "AppSaveSiteMapsReqVO", "AppUpdateAppReqVO", "AppUpdateI18nReqVO", "AppUpdateWidgetsIngressOptionsReqVO", "AppUpdateWidgetsReqVO", "AutomateRuleCreateReqVO", "AutomateRuleUpdateReqVO", "ChangePasswordReqVO", "CommonQueryFormVO", "CopilotSendMessageReqVO", "DashboardCreateReqVO", "DashboardUpdateLayoutReqVO", "DashboardUpdateOptionsReqVO", "DashboardUpdateTitleReqVO", "DatasetCreateDatasetReqVO", "DatasetCreateNodeReqVO", "DatasetImportReqVO", "DatasetMoveReqVO", "DatasetUpdateReqVO", "DepartmentsAddActorReqVO", "DepartmentsAddReqVO", "DepartmentsCreateServiceAccountReqVO", "DepartmentsDeleteActorReqVO", "DepartmentsEmployeeAccountChangePasswordReqVO", "DepartmentsEmployeeAccountCreateReqVO", "DepartmentsGetOrganizationUsersReqVO", "DepartmentsInviteCodeHistoryReqVO", "DepartmentsInviteCodeSwitchReqVO", "DepartmentsInviteOneByOneReqVO", "DepartmentsMakeLinkReqVO", "DepartmentsRelocateReqVO", "DepartmentsRenameReqVO", "DepartmentsResendInviteReqVO", "DepartmentsSetDeptPolicyReqVO", "DepartmentsUpdateUserReqVO", "DeveloperClientCreateReqVO", "DeveloperClientUpdateReqVO", "DeveloperHookletCreateReqVO", "DeveloperHookletUpdateReqVO", "EntityAIImportConfigReqVO", "EntityAddCommentReqVO", "EntityBulkUpdateReqVO", "EntityBulkUpdateSaveAsReqVO", "EntityCloneReqVO", "EntityDebugInvokeHookReqVO", "EntityDelCommentReqVO", "EntityDoActionReqVO", "EntityDoFsmActionReqVO", "EntityExportReqVO", "EntityImportPrepareReqVO", "EntityImportReqVO & EntityImportActionVO", "EntityInvokeBatchOperatorReqVO & InvokeRequestVO", "EntityKioskFlowCreateReqVO", "EntityKioskFlowUpdateReqVO", "EntityPrintTemplatesCreateReqVO", "EntityPrintTemplatesUpdateReqVO", "EntityPutQueryKeeperReqVO", "EntityQueryFilterReqVO", "EntityQueryLinkToValuesReqVO", "EntityQueryRelationReqVO", "EntityQueryReqVO", "EntityResolveWorkflowReqVO", "EntitySaveCustomKeysReqVO", "EntitySaveNameReqVO", "EntitySaveReqVO", "EntitySelectionActionReqVO", "EntitySerialInitValReqVO", "EntityTestNotificationReqVO", "EntityUpdateButtonsReqVO", "EntityUpdateNotificationsReqVO", "EntityUpdateOptionsReqVO", "EntityUpdateReqVO", "EntityUpdateSuccessScreenReqVO", "EntityValidateUniqReqVO", "EntityWorkflowDeployReqVO", "EntityWorkflowUpdateReqVO", "FetchWidgetsDataReqVO", "GetOrganizationTreeReqVO", "GetOrganizationUsersReqVO", "GetSubformItemsReqVO", "GetUploadTokenReqVO", "GlobalActionAcceptInvitationLinkReqVO", "GlobalActionAcceptInvitationReqVO", "GlobalActionCreateTenantReqVO", "GlobalActionEmailVerifyReqVO", "GlobalActionEmailVerifyResendReqVO", "GlobalActionProfileSetEmailReqVO", "GlobalActionSetDefaultTenantReqVO", "IngressSetOptionsTabberReqVO", "InsertPrepareReqVO", "InsertReqVO", "InvokeRequestVO", "MobileUploadCheckReqVO", "MobileUploadReqVO", "PrintTemplateBackgroundUploadReqVO", "TenantConfigGetReqVO", "TenantConfigUpdateAuthBgImageReqVO", "TenantConfigUpdateAuthReqVO", "TenantConfigUpdateEmailReqVO", "TenantConfigUpdateIconReqVO", "TenantConfigUpdateLogoReqVO", "TenantConfigUpdateMetaReqVO", "TenantConfigUpdateNameReqVO", "TenantConfigUpdateReqVO", "TenantCreateCustomDomainReqVO", "TenantKioskGroupCreateReqVO", "TenantKioskGroupQueryReqVO", "TenantKioskGroupUpdateReqVO", "TenantVerifyCustomDomainOwnerReqVO", "UpdateAvatarReqVO", "UploadPreviewReqVO", "UserFlowQueryReqVO", "UserProfileUpdateReqVO", "{ name: string }", "{ policy_id: string selection: any tag_names: string[] }", "{ policy_id: string selection: any }", "{ policy_id: string tags: string[] }"];
|
|
225
|
+
export declare const bodySchemas: {
|
|
226
|
+
readonly AppCreateByTenantsReqVO: z.ZodTypeAny;
|
|
227
|
+
readonly AppCreateEntityReqVO: z.ZodTypeAny;
|
|
228
|
+
readonly AppCreateEntityShareReqVO: z.ZodTypeAny;
|
|
229
|
+
readonly AppDeleteEntityShareReqVO: z.ZodTypeAny;
|
|
230
|
+
readonly AppIngressCreateReqVO: z.ZodTypeAny;
|
|
231
|
+
readonly AppIngressUpdateBlocksReqVO: z.ZodTypeAny;
|
|
232
|
+
readonly AppIngressUpdateReqVO: z.ZodTypeAny;
|
|
233
|
+
readonly AppNewWidgetsReqVO: z.ZodTypeAny;
|
|
234
|
+
readonly AppPreviewWidgetsDataReqVO: z.ZodTypeAny;
|
|
235
|
+
readonly AppRenameReqVO: z.ZodTypeAny;
|
|
236
|
+
readonly AppSaveSiteMapsReqVO: z.ZodTypeAny;
|
|
237
|
+
readonly AppUpdateAppReqVO: z.ZodTypeAny;
|
|
238
|
+
readonly AppUpdateI18nReqVO: z.ZodTypeAny;
|
|
239
|
+
readonly AppUpdateWidgetsIngressOptionsReqVO: z.ZodTypeAny;
|
|
240
|
+
readonly AppUpdateWidgetsReqVO: z.ZodTypeAny;
|
|
241
|
+
readonly AutomateRuleCreateReqVO: z.ZodTypeAny;
|
|
242
|
+
readonly AutomateRuleUpdateReqVO: z.ZodTypeAny;
|
|
243
|
+
readonly ChangePasswordReqVO: z.ZodTypeAny;
|
|
244
|
+
readonly CommonQueryFormVO: z.ZodTypeAny;
|
|
245
|
+
readonly CopilotSendMessageReqVO: z.ZodTypeAny;
|
|
246
|
+
readonly DashboardCreateReqVO: z.ZodTypeAny;
|
|
247
|
+
readonly DashboardUpdateLayoutReqVO: z.ZodTypeAny;
|
|
248
|
+
readonly DashboardUpdateOptionsReqVO: z.ZodTypeAny;
|
|
249
|
+
readonly DashboardUpdateTitleReqVO: z.ZodTypeAny;
|
|
250
|
+
readonly DatasetCreateDatasetReqVO: z.ZodTypeAny;
|
|
251
|
+
readonly DatasetCreateNodeReqVO: z.ZodTypeAny;
|
|
252
|
+
readonly DatasetImportReqVO: z.ZodTypeAny;
|
|
253
|
+
readonly DatasetMoveReqVO: z.ZodTypeAny;
|
|
254
|
+
readonly DatasetUpdateReqVO: z.ZodTypeAny;
|
|
255
|
+
readonly DepartmentsAddActorReqVO: z.ZodTypeAny;
|
|
256
|
+
readonly DepartmentsAddReqVO: z.ZodTypeAny;
|
|
257
|
+
readonly DepartmentsCreateServiceAccountReqVO: z.ZodTypeAny;
|
|
258
|
+
readonly DepartmentsDeleteActorReqVO: z.ZodTypeAny;
|
|
259
|
+
readonly DepartmentsEmployeeAccountChangePasswordReqVO: z.ZodTypeAny;
|
|
260
|
+
readonly DepartmentsEmployeeAccountCreateReqVO: z.ZodTypeAny;
|
|
261
|
+
readonly DepartmentsGetOrganizationUsersReqVO: z.ZodTypeAny;
|
|
262
|
+
readonly DepartmentsInviteCodeHistoryReqVO: z.ZodTypeAny;
|
|
263
|
+
readonly DepartmentsInviteCodeSwitchReqVO: z.ZodTypeAny;
|
|
264
|
+
readonly DepartmentsInviteOneByOneReqVO: z.ZodTypeAny;
|
|
265
|
+
readonly DepartmentsMakeLinkReqVO: z.ZodTypeAny;
|
|
266
|
+
readonly DepartmentsRelocateReqVO: z.ZodTypeAny;
|
|
267
|
+
readonly DepartmentsRenameReqVO: z.ZodTypeAny;
|
|
268
|
+
readonly DepartmentsResendInviteReqVO: z.ZodTypeAny;
|
|
269
|
+
readonly DepartmentsSetDeptPolicyReqVO: z.ZodTypeAny;
|
|
270
|
+
readonly DepartmentsUpdateUserReqVO: z.ZodTypeAny;
|
|
271
|
+
readonly DeveloperClientCreateReqVO: z.ZodTypeAny;
|
|
272
|
+
readonly DeveloperClientUpdateReqVO: z.ZodTypeAny;
|
|
273
|
+
readonly DeveloperHookletCreateReqVO: z.ZodTypeAny;
|
|
274
|
+
readonly DeveloperHookletUpdateReqVO: z.ZodTypeAny;
|
|
275
|
+
readonly EntityAIImportConfigReqVO: z.ZodTypeAny;
|
|
276
|
+
readonly EntityAddCommentReqVO: z.ZodTypeAny;
|
|
277
|
+
readonly EntityBulkUpdateReqVO: z.ZodTypeAny;
|
|
278
|
+
readonly EntityBulkUpdateSaveAsReqVO: z.ZodTypeAny;
|
|
279
|
+
readonly EntityCloneReqVO: z.ZodTypeAny;
|
|
280
|
+
readonly EntityDebugInvokeHookReqVO: z.ZodTypeAny;
|
|
281
|
+
readonly EntityDelCommentReqVO: z.ZodTypeAny;
|
|
282
|
+
readonly EntityDoActionReqVO: z.ZodTypeAny;
|
|
283
|
+
readonly EntityDoFsmActionReqVO: z.ZodTypeAny;
|
|
284
|
+
readonly EntityExportReqVO: z.ZodTypeAny;
|
|
285
|
+
readonly EntityImportPrepareReqVO: z.ZodTypeAny;
|
|
286
|
+
readonly "EntityImportReqVO & EntityImportActionVO": z.ZodTypeAny;
|
|
287
|
+
readonly "EntityInvokeBatchOperatorReqVO & InvokeRequestVO": z.ZodTypeAny;
|
|
288
|
+
readonly EntityKioskFlowCreateReqVO: z.ZodTypeAny;
|
|
289
|
+
readonly EntityKioskFlowUpdateReqVO: z.ZodTypeAny;
|
|
290
|
+
readonly EntityPrintTemplatesCreateReqVO: z.ZodTypeAny;
|
|
291
|
+
readonly EntityPrintTemplatesUpdateReqVO: z.ZodTypeAny;
|
|
292
|
+
readonly EntityPutQueryKeeperReqVO: z.ZodTypeAny;
|
|
293
|
+
readonly EntityQueryFilterReqVO: z.ZodTypeAny;
|
|
294
|
+
readonly EntityQueryLinkToValuesReqVO: z.ZodTypeAny;
|
|
295
|
+
readonly EntityQueryRelationReqVO: z.ZodTypeAny;
|
|
296
|
+
readonly EntityQueryReqVO: z.ZodTypeAny;
|
|
297
|
+
readonly EntityResolveWorkflowReqVO: z.ZodTypeAny;
|
|
298
|
+
readonly EntitySaveCustomKeysReqVO: z.ZodTypeAny;
|
|
299
|
+
readonly EntitySaveNameReqVO: z.ZodTypeAny;
|
|
300
|
+
readonly EntitySaveReqVO: z.ZodTypeAny;
|
|
301
|
+
readonly EntitySelectionActionReqVO: z.ZodTypeAny;
|
|
302
|
+
readonly EntitySerialInitValReqVO: z.ZodTypeAny;
|
|
303
|
+
readonly EntityTestNotificationReqVO: z.ZodTypeAny;
|
|
304
|
+
readonly EntityUpdateButtonsReqVO: z.ZodTypeAny;
|
|
305
|
+
readonly EntityUpdateNotificationsReqVO: z.ZodTypeAny;
|
|
306
|
+
readonly EntityUpdateOptionsReqVO: z.ZodTypeAny;
|
|
307
|
+
readonly EntityUpdateReqVO: z.ZodTypeAny;
|
|
308
|
+
readonly EntityUpdateSuccessScreenReqVO: z.ZodTypeAny;
|
|
309
|
+
readonly EntityValidateUniqReqVO: z.ZodTypeAny;
|
|
310
|
+
readonly EntityWorkflowDeployReqVO: z.ZodTypeAny;
|
|
311
|
+
readonly EntityWorkflowUpdateReqVO: z.ZodTypeAny;
|
|
312
|
+
readonly FetchWidgetsDataReqVO: z.ZodTypeAny;
|
|
313
|
+
readonly GetOrganizationTreeReqVO: z.ZodTypeAny;
|
|
314
|
+
readonly GetOrganizationUsersReqVO: z.ZodTypeAny;
|
|
315
|
+
readonly GetSubformItemsReqVO: z.ZodTypeAny;
|
|
316
|
+
readonly GetUploadTokenReqVO: z.ZodTypeAny;
|
|
317
|
+
readonly GlobalActionAcceptInvitationLinkReqVO: z.ZodTypeAny;
|
|
318
|
+
readonly GlobalActionAcceptInvitationReqVO: z.ZodTypeAny;
|
|
319
|
+
readonly GlobalActionCreateTenantReqVO: z.ZodTypeAny;
|
|
320
|
+
readonly GlobalActionEmailVerifyReqVO: z.ZodTypeAny;
|
|
321
|
+
readonly GlobalActionEmailVerifyResendReqVO: z.ZodTypeAny;
|
|
322
|
+
readonly GlobalActionProfileSetEmailReqVO: z.ZodTypeAny;
|
|
323
|
+
readonly GlobalActionSetDefaultTenantReqVO: z.ZodTypeAny;
|
|
324
|
+
readonly IngressSetOptionsTabberReqVO: z.ZodTypeAny;
|
|
325
|
+
readonly InsertPrepareReqVO: z.ZodTypeAny;
|
|
326
|
+
readonly InsertReqVO: z.ZodTypeAny;
|
|
327
|
+
readonly InvokeRequestVO: z.ZodTypeAny;
|
|
328
|
+
readonly MobileUploadCheckReqVO: z.ZodTypeAny;
|
|
329
|
+
readonly MobileUploadReqVO: z.ZodTypeAny;
|
|
330
|
+
readonly PrintTemplateBackgroundUploadReqVO: z.ZodTypeAny;
|
|
331
|
+
readonly TenantConfigGetReqVO: z.ZodTypeAny;
|
|
332
|
+
readonly TenantConfigUpdateAuthBgImageReqVO: z.ZodTypeAny;
|
|
333
|
+
readonly TenantConfigUpdateAuthReqVO: z.ZodTypeAny;
|
|
334
|
+
readonly TenantConfigUpdateEmailReqVO: z.ZodTypeAny;
|
|
335
|
+
readonly TenantConfigUpdateIconReqVO: z.ZodTypeAny;
|
|
336
|
+
readonly TenantConfigUpdateLogoReqVO: z.ZodTypeAny;
|
|
337
|
+
readonly TenantConfigUpdateMetaReqVO: z.ZodTypeAny;
|
|
338
|
+
readonly TenantConfigUpdateNameReqVO: z.ZodTypeAny;
|
|
339
|
+
readonly TenantConfigUpdateReqVO: z.ZodTypeAny;
|
|
340
|
+
readonly TenantCreateCustomDomainReqVO: z.ZodTypeAny;
|
|
341
|
+
readonly TenantKioskGroupCreateReqVO: z.ZodTypeAny;
|
|
342
|
+
readonly TenantKioskGroupQueryReqVO: z.ZodTypeAny;
|
|
343
|
+
readonly TenantKioskGroupUpdateReqVO: z.ZodTypeAny;
|
|
344
|
+
readonly TenantVerifyCustomDomainOwnerReqVO: z.ZodTypeAny;
|
|
345
|
+
readonly UpdateAvatarReqVO: z.ZodTypeAny;
|
|
346
|
+
readonly UploadPreviewReqVO: z.ZodTypeAny;
|
|
347
|
+
readonly UserFlowQueryReqVO: z.ZodTypeAny;
|
|
348
|
+
readonly UserProfileUpdateReqVO: z.ZodTypeAny;
|
|
349
|
+
readonly "{ name: string }": z.ZodTypeAny;
|
|
350
|
+
readonly "{ policy_id: string selection: any tag_names: string[] }": z.ZodTypeAny;
|
|
351
|
+
readonly "{ policy_id: string selection: any }": z.ZodTypeAny;
|
|
352
|
+
readonly "{ policy_id: string tags: string[] }": z.ZodTypeAny;
|
|
353
|
+
};
|
|
354
|
+
export declare const unsupportedBodySchemas: {};
|
|
355
|
+
export type GeneratedBodySchemaName = keyof typeof bodySchemas;
|
|
356
|
+
//# sourceMappingURL=zod_registry.generated.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"zod_registry.generated.d.ts","sourceRoot":"","sources":["../../src/generated/zod_registry.generated.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,eAAO,MAAM,6BAA6B,EAAE,CAAC,CAAC,UAAwJ,CAAA;AAEtM,eAAO,MAAM,0BAA0B,EAAE,CAAC,CAAC,UAAgH,CAAA;AAE3J,eAAO,MAAM,+BAA+B,EAAE,CAAC,CAAC,UAAuH,CAAA;AAEvK,eAAO,MAAM,+BAA+B,EAAE,CAAC,CAAC,UAA6G,CAAA;AAE7J,eAAO,MAAM,cAAc,EAAE,CAAC,CAAC,UAA2D,CAAA;AAE1F,eAAO,MAAM,kBAAkB,EAAE,CAAC,CAAC,UAAsJ,CAAA;AAEzL,eAAO,MAAM,wBAAwB,EAAE,CAAC,CAAC,UAAoV,CAAA;AAE7X,eAAO,MAAM,sBAAsB,EAAE,CAAC,CAAC,UAAsG,CAAA;AAE7I,eAAO,MAAM,qBAAqB,EAAE,CAAC,CAAC,UAA8E,CAAA;AAEpH,eAAO,MAAM,2BAA2B,EAAE,CAAC,CAAC,UAAiT,CAAA;AAE7V,eAAO,MAAM,wBAAwB,EAAE,CAAC,CAAC,UAA8I,CAAA;AAEvL,eAAO,MAAM,yBAAyB,EAAE,CAAC,CAAC,UAA0M,CAAA;AAEpP,eAAO,MAAM,4BAA4B,EAAE,CAAC,CAAC,UAA4L,CAAA;AAEzO,eAAO,MAAM,6BAA6B,EAAE,CAAC,CAAC,UAAub,CAAA;AAEre,eAAO,MAAM,uBAAuB,EAAE,CAAC,CAAC,UAAiL,CAAA;AAEzN,eAAO,MAAM,kBAAkB,EAAE,CAAC,CAAC,UAA2Z,CAAA;AAE9b,eAAO,MAAM,qBAAqB,EAAE,CAAC,CAAC,UAAqL,CAAA;AAE3N,eAAO,MAAM,0BAA0B,EAAE,CAAC,CAAC,UAAoP,CAAA;AAE/R,eAAO,MAAM,2BAA2B,EAAE,CAAC,CAAC,UAAyS,CAAA;AAErV,eAAO,MAAM,uBAAuB,EAAE,CAAC,CAAC,UAAiH,CAAA;AAEzJ,eAAO,MAAM,iCAAiC,EAAE,CAAC,CAAC,UAAuG,CAAA;AAEzJ,eAAO,MAAM,2BAA2B,EAAE,CAAC,CAAC,UAA8M,CAAA;AAE1P,eAAO,MAAM,qBAAqB,EAAE,CAAC,CAAC,UAAgE,CAAA;AAEtG,eAAO,MAAM,iBAAiB,EAAE,CAAC,CAAC,UAAsK,CAAA;AAExM,eAAO,MAAM,wBAAwB,EAAE,CAAC,CAAC,UAAwH,CAAA;AAEjK,eAAO,MAAM,mBAAmB,EAAE,CAAC,CAAC,UAA8S,CAAA;AAElV,eAAO,MAAM,0BAA0B,EAAE,CAAC,CAAC,UAA6J,CAAA;AAExM,eAAO,MAAM,iBAAiB,EAAE,CAAC,CAAC,UAA4R,CAAA;AAE9T,eAAO,MAAM,gCAAgC,EAAE,CAAC,CAAC,UAA2R,CAAA;AAE5U,eAAO,MAAM,oBAAoB,EAAE,CAAC,CAAC,UAA+E,CAAA;AAEpH,eAAO,MAAM,yBAAyB,EAAE,CAAC,CAAC,UAA0M,CAAA;AAEpP,eAAO,MAAM,iBAAiB,EAAE,CAAC,CAAC,UAAwQ,CAAA;AAE1S,eAAO,MAAM,uBAAuB,EAAE,CAAC,CAAC,UAA6S,CAAA;AAErV,eAAO,MAAM,0BAA0B,EAAE,CAAC,CAAC,UAA0Q,CAAA;AAErT,eAAO,MAAM,mBAAmB,EAAE,CAAC,CAAC,UAAgH,CAAA;AAEpJ,eAAO,MAAM,gBAAgB,EAAE,CAAC,CAAC,UAA8F,CAAA;AAE/H,eAAO,MAAM,uBAAuB,EAAE,CAAC,CAAC,UAAuf,CAAA;AAE/hB,eAAO,MAAM,wBAAwB,EAAE,CAAC,CAAC,UAAkG,CAAA;AAE3I,eAAO,MAAM,wBAAwB,EAAE,CAAC,CAAC,UAAmD,CAAA;AAE5F,eAAO,MAAM,4BAA4B,EAAE,CAAC,CAAC,UAAwO,CAAA;AAErR,eAAO,MAAM,yCAAyC,EAAE,CAAC,CAAC,UAAoG,CAAA;AAE9J,eAAO,MAAM,iBAAiB,EAAE,CAAC,CAAC,UAAqU,CAAA;AAEvW,eAAO,MAAM,mBAAmB,EAAE,CAAC,CAAC,UAAgM,CAAA;AAEpO,eAAO,MAAM,2BAA2B,EAAE,CAAC,CAAC,UAA+H,CAAA;AAE3K,eAAO,MAAM,kBAAkB,EAAE,CAAC,CAAC,UAA4F,CAAA;AAE/H,eAAO,MAAM,uBAAuB,EAAE,CAAC,CAAC,UAA4H,CAAA;AAEpK,eAAO,MAAM,sBAAsB,EAAE,CAAC,CAAC,UAA0Q,CAAA;AAEjT,eAAO,MAAM,kBAAkB,EAAE,CAAC,CAAC,UAAiQ,CAAA;AAEpS,eAAO,MAAM,uBAAuB,EAAE,CAAC,CAAC,UAAyI,CAAA;AAEjL,eAAO,MAAM,6BAA6B,EAAE,CAAC,CAAC,UAA8L,CAAA;AAE5O,eAAO,MAAM,6BAA6B,EAAE,CAAC,CAAC,UAAiO,CAAA;AAE/Q,eAAO,MAAM,yBAAyB,EAAE,CAAC,CAAC,UAA6J,CAAA;AAEvM,eAAO,MAAM,sBAAsB,EAAE,CAAC,CAAC,UAA8I,CAAA;AAErL,eAAO,MAAM,uBAAuB,EAAE,CAAC,CAAC,UAAkI,CAAA;AAE1K,eAAO,MAAM,oBAAoB,EAAE,CAAC,CAAC,UAAiH,CAAA;AAEtJ,eAAO,MAAM,6BAA6B,EAAE,CAAC,CAAC,UAA8O,CAAA;AAE5R,eAAO,MAAM,0BAA0B,EAAE,CAAC,CAAC,UAA+E,CAAA;AAE1H,eAAO,MAAM,oBAAoB,EAAE,CAAC,CAAC,UAA6L,CAAA;AAElO,eAAO,MAAM,gCAAgC,EAAE,CAAC,CAAC,UAAwD,CAAA;AAEzG,eAAO,MAAM,iCAAiC,EAAE,CAAC,CAAC,UAAmW,CAAA;AAErZ,eAAO,MAAM,+BAA+B,EAAE,CAAC,CAAC,UAA+E,CAAA;AAE/H,eAAO,MAAM,+BAA+B,EAAE,CAAC,CAAC,UAAoX,CAAA;AAEpa,eAAO,MAAM,gBAAgB,EAAE,CAAC,CAAC,UAA4f,CAAA;AAE7hB,eAAO,MAAM,4BAA4B,EAAE,CAAC,CAAC,UAA4f,CAAA;AAEziB,eAAO,MAAM,wBAAwB,EAAE,CAAC,CAAC,UAAuH,CAAA;AAEhK,eAAO,MAAM,sBAAsB,EAAE,CAAC,CAAC,UAAmH,CAAA;AAE1J,eAAO,MAAM,wBAAwB,EAAE,CAAC,CAAC,UAA4f,CAAA;AAEriB,eAAO,MAAM,8BAA8B,EAAE,CAAC,CAAC,UAA+E,CAAA;AAE9H,eAAO,MAAM,yBAAyB,EAAE,CAAC,CAAC,UAAmH,CAAA;AAE7J,eAAO,MAAM,0CAA0C,EAAE,CAAC,CAAC,UAA4J,CAAA;AAEvN,eAAO,MAAM,iCAAiC,EAAE,CAAC,CAAC,UAAmF,CAAA;AAErI,eAAO,MAAM,mDAAmD,EAAE,CAAC,CAAC,UAAgH,CAAA;AAEpL,eAAO,MAAM,2CAA2C,EAAE,CAAC,CAAC,UAAwJ,CAAA;AAEpN,eAAO,MAAM,0CAA0C,EAAE,CAAC,CAAC,UAA2T,CAAA;AAEtX,eAAO,MAAM,uCAAuC,EAAE,CAAC,CAAC,UAAyJ,CAAA;AAEjN,eAAO,MAAM,sCAAsC,EAAE,CAAC,CAAC,UAAiH,CAAA;AAExK,eAAO,MAAM,oCAAoC,EAAE,CAAC,CAAC,UAA0Q,CAAA;AAE/T,eAAO,MAAM,8BAA8B,EAAE,CAAC,CAAC,UAAwM,CAAA;AAEvP,eAAO,MAAM,8BAA8B,EAAE,CAAC,CAAC,UAAmH,CAAA;AAElK,eAAO,MAAM,4BAA4B,EAAE,CAAC,CAAC,UAA+E,CAAA;AAE5H,eAAO,MAAM,kCAAkC,EAAE,CAAC,CAAC,UAA6E,CAAA;AAEhI,eAAO,MAAM,mCAAmC,EAAE,CAAC,CAAC,UAA8E,CAAA;AAElI,eAAO,MAAM,gCAAgC,EAAE,CAAC,CAAC,UAAs5B,CAAA;AAEv8B,eAAO,MAAM,gCAAgC,EAAE,CAAC,CAAC,UAA4O,CAAA;AAE7R,eAAO,MAAM,gCAAgC,EAAE,CAAC,CAAC,UAA6Q,CAAA;AAE9T,eAAO,MAAM,iCAAiC,EAAE,CAAC,CAAC,UAAkI,CAAA;AAEpL,eAAO,MAAM,iCAAiC,EAAE,CAAC,CAAC,UAAqG,CAAA;AAEvJ,eAAO,MAAM,+BAA+B,EAAE,CAAC,CAAC,UAAsI,CAAA;AAEtL,eAAO,MAAM,gCAAgC,EAAE,CAAC,CAAC,UAA6O,CAAA;AAE9R,eAAO,MAAM,2BAA2B,EAAE,CAAC,CAAC,UAAkQ,CAAA;AAE9S,eAAO,MAAM,8BAA8B,EAAE,CAAC,CAAC,UAAqX,CAAA;AAEpa,eAAO,MAAM,6BAA6B,EAAE,CAAC,CAAC,UAAkI,CAAA;AAEhL,eAAO,MAAM,2BAA2B,EAAE,CAAC,CAAC,UAAiJ,CAAA;AAE7L,eAAO,MAAM,iCAAiC,EAAE,CAAC,CAAC,UAA8K,CAAA;AAEhO,eAAO,MAAM,sBAAsB,EAAE,CAAC,CAAC,UAA6L,CAAA;AAEpO,eAAO,MAAM,yBAAyB,EAAE,CAAC,CAAC,UAA8E,CAAA;AAExH,eAAO,MAAM,qBAAqB,EAAE,CAAC,CAAC,UAA+J,CAAA;AAErM,eAAO,MAAM,iBAAiB,EAAE,CAAC,CAAC,UAA6K,CAAA;AAE/M,eAAO,MAAM,eAAe,EAAE,CAAC,CAAC,UAAgR,CAAA;AAEhT,eAAO,MAAM,gBAAgB,EAAE,CAAC,CAAC,UAA4I,CAAA;AAE7K,eAAO,MAAM,sBAAsB,EAAE,CAAC,CAAC,UAAqH,CAAA;AAE5J,eAAO,MAAM,iBAAiB,EAAE,CAAC,CAAC,UAA8S,CAAA;AAEhV,eAAO,MAAM,sBAAsB,EAAE,CAAC,CAAC,UAA4gB,CAAA;AAEnjB,eAAO,MAAM,gCAAgC,EAAE,CAAC,CAAC,UAAgJ,CAAA;AAEjM,eAAO,MAAM,2BAA2B,EAAE,CAAC,CAAC,UAAqF,CAAA;AAEjI,eAAO,MAAM,6BAA6B,EAAE,CAAC,CAAC,UAAkQ,CAAA;AAEhT,eAAO,MAAM,+BAA+B,EAAE,CAAC,CAAC,UAA4G,CAAA;AAE5J,eAAO,MAAM,yBAAyB,EAAE,CAAC,CAAC,UAAgZ,CAAA;AAE1b,eAAO,MAAM,4BAA4B,EAAE,CAAC,CAAC,UAAiL,CAAA;AAE9N,eAAO,MAAM,uBAAuB,EAAE,CAAC,CAAC,UAAgT,CAAA;AAExV,eAAO,MAAM,8BAA8B,EAAE,CAAC,CAAC,UAAkF,CAAA;AAEjI,eAAO,MAAM,uBAAuB,EAAE,CAAC,CAAC,UAAuH,CAAA;AAE/J,eAAO,MAAM,0BAA0B,EAAE,CAAC,CAAC,UAAkH,CAAA;AAE7J,eAAO,MAAM,mBAAmB,EAAE,CAAC,CAAC,UAA8F,CAAA;AAElI,eAAO,MAAM,iCAAiC,EAAE,CAAC,CAAC,UAAiH,CAAA;AAEnK,eAAO,MAAM,uBAAuB,EAAE,CAAC,CAAC,UAA8Q,CAAA;AAEtT,eAAO,MAAM,qCAAqC,EAAE,CAAC,CAAC,UAAyK,CAAA;AAE/N,eAAO,MAAM,oCAAoC,EAAE,CAAC,CAAC,UAAuI,CAAA;AAE5L,eAAO,MAAM,qBAAqB,EAAE,CAAC,CAAC,UAAoG,CAAA;AAE1I,eAAO,MAAM,mBAAmB,EAAE,CAAC,CAAC,UAAsG,CAAA;AAE1I,eAAO,MAAM,iBAAiB,EAAE,CAAC,CAAC,UAAwD,CAAA;AAE1F,eAAO,MAAM,iBAAiB,EAAE,CAAC,CAAC,UAAiR,CAAA;AAEnT,eAAO,MAAM,gCAAgC,EAAE,CAAC,CAAC,UAAmN,CAAA;AAEpQ,eAAO,MAAM,gCAAgC,EAAE,CAAC,CAAC,UAA6hB,CAAA;AAE9kB,eAAO,MAAM,YAAY,EAAE,CAAC,CAAC,UAAwZ,CAAA;AAErb,eAAO,MAAM,qCAAqC,EAAE,CAAC,CAAC,UAAkU,CAAA;AAExX,eAAO,MAAM,qCAAqC,EAAE,CAAC,CAAC,UAAkU,CAAA;AAExX,eAAO,MAAM,+BAA+B,EAAE,CAAC,CAAC,UAAqI,CAAA;AAErL,eAAO,MAAM,4BAA4B,EAAE,CAAC,CAAC,UAAqJ,CAAA;AAElM,eAAO,MAAM,kCAAkC,EAAE,CAAC,CAAC,UAAqb,CAAA;AAExe,eAAO,MAAM,8BAA8B,EAAE,CAAC,CAAC,UAAiZ,CAAA;AAEhc,eAAO,MAAM,wBAAwB,EAAE,CAAC,CAAC,UAAiH,CAAA;AAE1J,eAAO,MAAM,sBAAsB,EAAE,CAAC,CAAC,UAA2U,CAAA;AAElX,eAAO,MAAM,gCAAgC,EAAE,CAAC,CAAC,UAA6R,CAAA;AAE9U,eAAO,MAAM,iCAAiC,EAAE,CAAC,CAAC,UAA2G,CAAA;AAE7J,eAAO,MAAM,+BAA+B,EAAE,CAAC,CAAC,UAAqE,CAAA;AAErH,eAAO,MAAM,yBAAyB,EAAE,CAAC,CAAC,UAA+E,CAAA;AAEzH,eAAO,MAAM,2BAA2B,EAAE,CAAC,CAAC,UAAgH,CAAA;AAE5J,eAAO,MAAM,YAAY,EAAE,CAAC,CAAC,UAAwD,CAAA;AAErF,eAAO,MAAM,YAAY,EAAE,CAAC,CAAC,UAAmK,CAAA;AAEhM,eAAO,MAAM,kBAAkB,EAAE,CAAC,CAAC,UAAmM,CAAA;AAEtO,eAAO,MAAM,6BAA6B,EAAE,CAAC,CAAC,UAAgE,CAAA;AAE9G,eAAO,MAAM,kCAAkC,EAAE,CAAC,CAAC,UAA4E,CAAA;AAE/H,eAAO,MAAM,mBAAmB,EAAE,CAAC,CAAC,UAAmpC,CAAA;AAEvrC,eAAO,MAAM,qBAAqB,EAAE,CAAC,CAAC,UAAkf,CAAA;AAExhB,eAAO,MAAM,gCAAgC,EAAE,CAAC,CAAC,UAAsM,CAAA;AAEvP,eAAO,MAAM,8BAA8B,EAAE,CAAC,CAAC,UAAqJ,CAAA;AAEpM,eAAO,MAAM,iCAAiC,EAAE,CAAC,CAAC,UAA8I,CAAA;AAEhM,eAAO,MAAM,8BAA8B,EAAE,CAAC,CAAC,UAAgD,CAAA;AAE/F,eAAO,MAAM,wBAAwB,EAAE,CAAC,CAAC,UAAgM,CAAA;AAEzO,eAAO,MAAM,oCAAoC,EAAE,CAAC,CAAC,UAA4D,CAAA;AAEjH,eAAO,MAAM,8BAA8B,EAAE,CAAC,CAAC,UAAwX,CAAA;AAEva,eAAO,MAAM,uBAAuB,EAAE,CAAC,CAAC,UAAgO,CAAA;AAExQ,eAAO,MAAM,oCAAoC,EAAE,CAAC,CAAC,UAAuN,CAAA;AAE5Q,eAAO,MAAM,+BAA+B,EAAE,CAAC,CAAC,UAAmH,CAAA;AAEnK,eAAO,MAAM,6BAA6B,EAAE,CAAC,CAAC,UAAmJ,CAAA;AAEjM,eAAO,MAAM,4BAA4B,EAAE,CAAC,CAAC,UAAqX,CAAA;AAEla,eAAO,MAAM,sBAAsB,EAAE,CAAC,CAAC,UAAgI,CAAA;AAEvK,eAAO,MAAM,0BAA0B,EAAE,CAAC,CAAC,UAAoQ,CAAA;AAE/S,eAAO,MAAM,sBAAsB,EAAE,CAAC,CAAC,UAAgE,CAAA;AAEvG,eAAO,MAAM,+BAA+B,EAAE,CAAC,CAAC,UAAqM,CAAA;AAErP,eAAO,MAAM,wBAAwB,EAAE,CAAC,CAAC,UAAy8B,CAAA;AAEl/B,eAAO,MAAM,2BAA2B,EAAE,CAAC,CAAC,UAA6N,CAAA;AAEzQ,eAAO,MAAM,6BAA6B,EAAE,CAAC,CAAC,UAA8E,CAAA;AAE5H,eAAO,MAAM,yBAAyB,EAAE,CAAC,CAAC,UAA8E,CAAA;AAExH,eAAO,MAAM,wBAAwB,EAAE,CAAC,CAAC,UAAqR,CAAA;AAE9T,eAAO,MAAM,uBAAuB,EAAE,CAAC,CAAC,UAAgR,CAAA;AAExT,eAAO,MAAM,qBAAqB,EAAE,CAAC,CAAC,UAA6S,CAAA;AAEnV,eAAO,MAAM,+BAA+B,EAAE,CAAC,CAAC,UAA6K,CAAA;AAE7N,eAAO,MAAM,+BAA+B,EAAE,CAAC,CAAC,UAA6K,CAAA;AAE7N,eAAO,MAAM,2BAA2B,EAAE,CAAC,CAAC,UAAiH,CAAA;AAE7J,eAAO,MAAM,2BAA2B,EAAE,CAAC,CAAC,UAA0W,CAAA;AAEtZ,eAAO,MAAM,8BAA8B,EAAE,CAAC,CAAC,UAAoF,CAAA;AAEnI,eAAO,MAAM,+BAA+B,EAAE,CAAC,CAAC,UAA2T,CAAA;AAE3W,eAAO,MAAM,0BAA0B,EAAE,CAAC,CAAC,UAA8H,CAAA;AAEzK,eAAO,MAAM,yBAAyB,EAAE,CAAC,CAAC,UAAkF,CAAA;AAE5H,eAAO,MAAM,2CAA2C,EAAE,CAAC,CAAC,UAA6E,CAAA;AAEzI,eAAO,MAAM,uCAAuC,EAAE,CAAC,CAAC,UAA6E,CAAA;AAErI,eAAO,MAAM,mCAAmC,EAAE,CAAC,CAAC,UAA+E,CAAA;AAEnI,eAAO,MAAM,kCAAkC,EAAE,CAAC,CAAC,UAAgH,CAAA;AAEnK,eAAO,MAAM,wCAAwC,EAAE,CAAC,CAAC,UAAiF,CAAA;AAE1I,eAAO,MAAM,sCAAsC,EAAE,CAAC,CAAC,UAA0H,CAAA;AAEjL,eAAO,MAAM,uCAAuC,EAAE,CAAC,CAAC,UAAoF,CAAA;AAE5I,eAAO,MAAM,sBAAsB,EAAE,CAAC,CAAC,UAAmZ,CAAA;AAE1b,eAAO,MAAM,kBAAkB,EAAE,CAAC,CAAC,UAAkI,CAAA;AAErK,eAAO,MAAM,yBAAyB,EAAE,CAAC,CAAC,UAAkM,CAAA;AAE5O,eAAO,MAAM,kCAAkC,EAAE,CAAC,CAAC,UAAuG,CAAA;AAE1J,eAAO,MAAM,wBAAwB,EAAE,CAAC,CAAC,UAAoF,CAAA;AAE7H,eAAO,MAAM,iBAAiB,EAAE,CAAC,CAAC,UAAwI,CAAA;AAE1K,eAAO,MAAM,4BAA4B,EAAE,CAAC,CAAC,UAAuK,CAAA;AAEpN,eAAO,MAAM,uBAAuB,EAAE,CAAC,CAAC,UAAqG,CAAA;AAE7I,eAAO,MAAM,wCAAwC,EAAE,CAAC,CAAC,UAAiG,CAAA;AAE1J,eAAO,MAAM,0BAA0B,EAAE,CAAC,CAAC,UAAwF,CAAA;AAEnI,eAAO,MAAM,wCAAwC,EAAE,CAAC,CAAC,UAAuH,CAAA;AAEhL,eAAO,MAAM,iCAAiC,EAAE,CAAC,CAAC,UAAyQ,CAAA;AAE3T,eAAO,MAAM,kCAAkC,EAAE,CAAC,CAAC,UAAiR,CAAA;AAEpU,eAAO,MAAM,iCAAiC,EAAE,CAAC,CAAC,UAAuH,CAAA;AAEzK,eAAO,MAAM,iCAAiC,EAAE,CAAC,CAAC,UAAuH,CAAA;AAEzK,eAAO,MAAM,8BAA8B,EAAE,CAAC,CAAC,UAA8E,CAAA;AAE7H,eAAO,MAAM,wBAAwB,EAAE,CAAC,CAAC,UAAwP,CAAA;AAEjS,eAAO,MAAM,iCAAiC,EAAE,CAAC,CAAC,UAAsG,CAAA;AAExJ,eAAO,MAAM,iCAAiC,EAAE,CAAC,CAAC,UAA+E,CAAA;AAEjI,eAAO,MAAM,6BAA6B,EAAE,CAAC,CAAC,UAAuJ,CAAA;AAErM,eAAO,MAAM,mCAAmC,EAAE,CAAC,CAAC,UAAsF,CAAA;AAE1I,eAAO,MAAM,iCAAiC,EAAE,CAAC,CAAC,UAAqH,CAAA;AAEvK,eAAO,MAAM,gCAAgC,EAAE,CAAC,CAAC,UAAgH,CAAA;AAEjK,eAAO,MAAM,iCAAiC,EAAE,CAAC,CAAC,UAAqH,CAAA;AAEvK,eAAO,MAAM,wCAAwC,EAAE,CAAC,CAAC,UAAsF,CAAA;AAE/I,eAAO,MAAM,uBAAuB,EAAE,CAAC,CAAC,UAAuH,CAAA;AAE/J,eAAO,MAAM,wBAAwB,EAAE,CAAC,CAAC,UAAoH,CAAA;AAE7J,eAAO,MAAM,4BAA4B,EAAE,CAAC,CAAC,UAA8E,CAAA;AAE3H,eAAO,MAAM,wBAAwB,EAAE,CAAC,CAAC,UAAkiB,CAAA;AAE3kB,eAAO,MAAM,iBAAiB,EAAE,CAAC,CAAC,UAAgH,CAAA;AAElJ,eAAO,MAAM,YAAY,EAAE,CAAC,CAAC,UAA0mB,CAAA;AAEvoB,eAAO,MAAM,kBAAkB,EAAE,CAAC,CAAC,UAA0G,CAAA;AAE7I,eAAO,MAAM,UAAU,EAAE,CAAC,CAAC,UAA4c,CAAA;AAEve,eAAO,MAAM,gBAAgB,EAAE,CAAC,CAAC,UAAmsB,CAAA;AAEpuB,eAAO,MAAM,4BAA4B,EAAE,CAAC,CAAC,UAAmL,CAAA;AAEhO,eAAO,MAAM,mBAAmB,EAAE,CAAC,CAAC,UAAoE,CAAA;AAExG,eAAO,MAAM,mBAAmB,EAAE,CAAC,CAAC,UAAiI,CAAA;AAErK,eAAO,MAAM,mBAAmB,EAAE,CAAC,CAAC,UAA+F,CAAA;AAEnI,eAAO,MAAM,mBAAmB,EAAE,CAAC,CAAC,UAAsG,CAAA;AAE1I,eAAO,MAAM,qBAAqB,gpHAgIxB,CAAA;AAEV,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgId,CAAA;AAEV,eAAO,MAAM,sBAAsB,IAEzB,CAAA;AAEV,MAAM,MAAM,uBAAuB,GAAG,MAAM,OAAO,WAAW,CAAA"}
|