@lokalise/content-type-app-engine-contracts 2.24.0 → 2.25.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/schemas/integrationProject/integrationProjectApiSchemas.d.ts +66 -0
- package/dist/schemas/integrationProject/integrationProjectApiSchemas.js +53 -1
- package/dist/schemas/integrationProject/integrationProjectApiSchemas.js.map +1 -1
- package/dist/schemas/integrationProject/integrationProjectSchemas.d.ts +35 -0
- package/dist/schemas/integrationProject/integrationProjectSchemas.js +52 -0
- package/dist/schemas/integrationProject/integrationProjectSchemas.js.map +1 -1
- package/package.json +1 -1
|
@@ -65,3 +65,69 @@ export declare const postConnectIntegrationProjectContract: import("@lokalise/ap
|
|
|
65
65
|
errorCode: import("zod/v4").ZodLiteral<"INTEGRATION_PROJECT_ALREADY_EXISTS">;
|
|
66
66
|
}, import("zod/v4/core").$strip>;
|
|
67
67
|
}>;
|
|
68
|
+
/**
|
|
69
|
+
* Contract for triggering import on an already connected integration-project
|
|
70
|
+
* POST /v1/integrations/{integrationId}/projects/{projectId}/actions/import
|
|
71
|
+
*
|
|
72
|
+
* This endpoint triggers a new import job for an existing IntegrationProject connection.
|
|
73
|
+
* Unlike the connect endpoint, it does NOT create a new IntegrationProject entry.
|
|
74
|
+
*
|
|
75
|
+
* ## Use Case
|
|
76
|
+
*
|
|
77
|
+
* Use this endpoint when:
|
|
78
|
+
* - The integration and project are already connected (via connect endpoint)
|
|
79
|
+
* - User wants to import additional items or re-import existing items
|
|
80
|
+
* - Performing incremental updates to the project content
|
|
81
|
+
*
|
|
82
|
+
* ## Request
|
|
83
|
+
*
|
|
84
|
+
* **Path Parameters:**
|
|
85
|
+
* - `integrationId`: UUID of the integration
|
|
86
|
+
* - `projectId`: UUID of the already-connected project
|
|
87
|
+
*
|
|
88
|
+
* **Body:**
|
|
89
|
+
* - `selectedItems`: Array of item uniqueIds (file IDs) from the itemList endpoint
|
|
90
|
+
*
|
|
91
|
+
* ## Response
|
|
92
|
+
*
|
|
93
|
+
* **Success (202 Accepted):**
|
|
94
|
+
* ```json
|
|
95
|
+
* {
|
|
96
|
+
* "jobId": "job-uuid-123"
|
|
97
|
+
* }
|
|
98
|
+
* ```
|
|
99
|
+
*
|
|
100
|
+
* **Error Responses:**
|
|
101
|
+
* - 400: Invalid request (missing required fields, invalid format)
|
|
102
|
+
* - 401: Unauthorized (missing or invalid authentication)
|
|
103
|
+
* - 404: Integration, Project, or IntegrationProject connection not found
|
|
104
|
+
*/
|
|
105
|
+
export declare const postTriggerImportContract: import("@lokalise/api-contracts").PayloadRouteDefinition<import("zod/v4").ZodObject<{
|
|
106
|
+
selectedItems: import("zod/v4").ZodArray<import("zod/v4").ZodString>;
|
|
107
|
+
}, import("zod/v4/core").$strip>, import("zod/v4").ZodObject<{
|
|
108
|
+
jobId: import("zod/v4").ZodString;
|
|
109
|
+
}, import("zod/v4/core").$strip>, import("zod/v4").ZodObject<{
|
|
110
|
+
integrationId: import("zod/v4").ZodGUID;
|
|
111
|
+
projectId: import("zod/v4").ZodGUID;
|
|
112
|
+
}, import("zod/v4/core").$strip>, undefined, import("zod/v4").ZodObject<{
|
|
113
|
+
authorization: import("zod/v4").ZodOptional<import("zod/v4").ZodString>;
|
|
114
|
+
}, import("zod/v4/core").$strip>, undefined, false, false, {
|
|
115
|
+
202: import("zod/v4").ZodObject<{
|
|
116
|
+
jobId: import("zod/v4").ZodString;
|
|
117
|
+
}, import("zod/v4/core").$strip>;
|
|
118
|
+
400: import("zod/v4").ZodObject<{
|
|
119
|
+
message: import("zod/v4").ZodString;
|
|
120
|
+
errorCode: import("zod/v4").ZodString;
|
|
121
|
+
details: import("zod/v4").ZodOptional<import("zod/v4").ZodRecord<import("zod/v4").ZodString, import("zod/v4").ZodAny>>;
|
|
122
|
+
}, import("zod/v4/core").$strip>;
|
|
123
|
+
401: import("zod/v4").ZodObject<{
|
|
124
|
+
message: import("zod/v4").ZodString;
|
|
125
|
+
errorCode: import("zod/v4").ZodString;
|
|
126
|
+
details: import("zod/v4").ZodOptional<import("zod/v4").ZodRecord<import("zod/v4").ZodString, import("zod/v4").ZodAny>>;
|
|
127
|
+
}, import("zod/v4/core").$strip>;
|
|
128
|
+
404: import("zod/v4").ZodObject<{
|
|
129
|
+
message: import("zod/v4").ZodString;
|
|
130
|
+
details: import("zod/v4").ZodOptional<import("zod/v4").ZodRecord<import("zod/v4").ZodString, import("zod/v4").ZodAny>>;
|
|
131
|
+
errorCode: import("zod/v4").ZodLiteral<"INTEGRATION_PROJECT_NOT_FOUND">;
|
|
132
|
+
}, import("zod/v4/core").$strip>;
|
|
133
|
+
}>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { buildPayloadRoute } from '@lokalise/api-contracts';
|
|
2
2
|
import { AUTHORIZATION_HEADER_SCHEMA, COMMON_ERROR_RESPONSE_SCHEMA_V2, } from "../commonRequestSchemas.js";
|
|
3
|
-
import { INTEGRATION_PROJECT_ALREADY_EXISTS_ERROR_RESPONSE_SCHEMA, POST_CONNECT_INTEGRATION_PROJECT_BODY_SCHEMA, POST_CONNECT_INTEGRATION_PROJECT_PATH_PARAMS_SCHEMA, POST_CONNECT_INTEGRATION_PROJECT_RESPONSE_SCHEMA, } from "./integrationProjectSchemas.js";
|
|
3
|
+
import { INTEGRATION_PROJECT_ALREADY_EXISTS_ERROR_RESPONSE_SCHEMA, INTEGRATION_PROJECT_NOT_FOUND_ERROR_RESPONSE_SCHEMA, POST_CONNECT_INTEGRATION_PROJECT_BODY_SCHEMA, POST_CONNECT_INTEGRATION_PROJECT_PATH_PARAMS_SCHEMA, POST_CONNECT_INTEGRATION_PROJECT_RESPONSE_SCHEMA, POST_TRIGGER_IMPORT_BODY_SCHEMA, POST_TRIGGER_IMPORT_PATH_PARAMS_SCHEMA, POST_TRIGGER_IMPORT_RESPONSE_SCHEMA, } from "./integrationProjectSchemas.js";
|
|
4
4
|
/**
|
|
5
5
|
* Contract for connecting an integration with a project
|
|
6
6
|
* POST /v1/integrations/{integrationId}/projects/actions/connect
|
|
@@ -50,4 +50,56 @@ export const postConnectIntegrationProjectContract = buildPayloadRoute({
|
|
|
50
50
|
},
|
|
51
51
|
requestHeaderSchema: AUTHORIZATION_HEADER_SCHEMA,
|
|
52
52
|
});
|
|
53
|
+
/**
|
|
54
|
+
* Contract for triggering import on an already connected integration-project
|
|
55
|
+
* POST /v1/integrations/{integrationId}/projects/{projectId}/actions/import
|
|
56
|
+
*
|
|
57
|
+
* This endpoint triggers a new import job for an existing IntegrationProject connection.
|
|
58
|
+
* Unlike the connect endpoint, it does NOT create a new IntegrationProject entry.
|
|
59
|
+
*
|
|
60
|
+
* ## Use Case
|
|
61
|
+
*
|
|
62
|
+
* Use this endpoint when:
|
|
63
|
+
* - The integration and project are already connected (via connect endpoint)
|
|
64
|
+
* - User wants to import additional items or re-import existing items
|
|
65
|
+
* - Performing incremental updates to the project content
|
|
66
|
+
*
|
|
67
|
+
* ## Request
|
|
68
|
+
*
|
|
69
|
+
* **Path Parameters:**
|
|
70
|
+
* - `integrationId`: UUID of the integration
|
|
71
|
+
* - `projectId`: UUID of the already-connected project
|
|
72
|
+
*
|
|
73
|
+
* **Body:**
|
|
74
|
+
* - `selectedItems`: Array of item uniqueIds (file IDs) from the itemList endpoint
|
|
75
|
+
*
|
|
76
|
+
* ## Response
|
|
77
|
+
*
|
|
78
|
+
* **Success (202 Accepted):**
|
|
79
|
+
* ```json
|
|
80
|
+
* {
|
|
81
|
+
* "jobId": "job-uuid-123"
|
|
82
|
+
* }
|
|
83
|
+
* ```
|
|
84
|
+
*
|
|
85
|
+
* **Error Responses:**
|
|
86
|
+
* - 400: Invalid request (missing required fields, invalid format)
|
|
87
|
+
* - 401: Unauthorized (missing or invalid authentication)
|
|
88
|
+
* - 404: Integration, Project, or IntegrationProject connection not found
|
|
89
|
+
*/
|
|
90
|
+
export const postTriggerImportContract = buildPayloadRoute({
|
|
91
|
+
method: 'post',
|
|
92
|
+
pathResolver: (params) => `/v1/integrations/${params.integrationId}/projects/${params.projectId}/actions/import`,
|
|
93
|
+
description: 'Trigger import job for an already connected integration-project',
|
|
94
|
+
requestPathParamsSchema: POST_TRIGGER_IMPORT_PATH_PARAMS_SCHEMA,
|
|
95
|
+
requestBodySchema: POST_TRIGGER_IMPORT_BODY_SCHEMA,
|
|
96
|
+
successResponseBodySchema: POST_TRIGGER_IMPORT_RESPONSE_SCHEMA,
|
|
97
|
+
responseSchemasByStatusCode: {
|
|
98
|
+
202: POST_TRIGGER_IMPORT_RESPONSE_SCHEMA,
|
|
99
|
+
400: COMMON_ERROR_RESPONSE_SCHEMA_V2,
|
|
100
|
+
401: COMMON_ERROR_RESPONSE_SCHEMA_V2,
|
|
101
|
+
404: INTEGRATION_PROJECT_NOT_FOUND_ERROR_RESPONSE_SCHEMA,
|
|
102
|
+
},
|
|
103
|
+
requestHeaderSchema: AUTHORIZATION_HEADER_SCHEMA,
|
|
104
|
+
});
|
|
53
105
|
//# sourceMappingURL=integrationProjectApiSchemas.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"integrationProjectApiSchemas.js","sourceRoot":"","sources":["../../../src/schemas/integrationProject/integrationProjectApiSchemas.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,yBAAyB,CAAA;AAC3D,OAAO,EACL,2BAA2B,EAC3B,+BAA+B,GAChC,MAAM,4BAA4B,CAAA;AACnC,OAAO,EACL,wDAAwD,EACxD,4CAA4C,EAC5C,mDAAmD,EACnD,gDAAgD,
|
|
1
|
+
{"version":3,"file":"integrationProjectApiSchemas.js","sourceRoot":"","sources":["../../../src/schemas/integrationProject/integrationProjectApiSchemas.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,yBAAyB,CAAA;AAC3D,OAAO,EACL,2BAA2B,EAC3B,+BAA+B,GAChC,MAAM,4BAA4B,CAAA;AACnC,OAAO,EACL,wDAAwD,EACxD,mDAAmD,EACnD,4CAA4C,EAC5C,mDAAmD,EACnD,gDAAgD,EAChD,+BAA+B,EAC/B,sCAAsC,EACtC,mCAAmC,GACpC,MAAM,gCAAgC,CAAA;AAEvC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgCG;AACH,MAAM,CAAC,MAAM,qCAAqC,GAAG,iBAAiB,CAAC;IACrE,MAAM,EAAE,MAAM;IACd,YAAY,EAAE,CAAC,MAAM,EAAE,EAAE,CAAC,oBAAoB,MAAM,CAAC,aAAa,2BAA2B;IAC7F,WAAW,EAAE,4DAA4D;IACzE,uBAAuB,EAAE,mDAAmD;IAC5E,iBAAiB,EAAE,4CAA4C;IAC/D,yBAAyB,EAAE,gDAAgD;IAC3E,2BAA2B,EAAE;QAC3B,GAAG,EAAE,gDAAgD;QACrD,GAAG,EAAE,+BAA+B;QACpC,GAAG,EAAE,+BAA+B;QACpC,GAAG,EAAE,+BAA+B;QACpC,GAAG,EAAE,wDAAwD;KAC9D;IACD,mBAAmB,EAAE,2BAA2B;CACjD,CAAC,CAAA;AAEF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoCG;AACH,MAAM,CAAC,MAAM,yBAAyB,GAAG,iBAAiB,CAAC;IACzD,MAAM,EAAE,MAAM;IACd,YAAY,EAAE,CAAC,MAAM,EAAE,EAAE,CACvB,oBAAoB,MAAM,CAAC,aAAa,aAAa,MAAM,CAAC,SAAS,iBAAiB;IACxF,WAAW,EAAE,iEAAiE;IAC9E,uBAAuB,EAAE,sCAAsC;IAC/D,iBAAiB,EAAE,+BAA+B;IAClD,yBAAyB,EAAE,mCAAmC;IAC9D,2BAA2B,EAAE;QAC3B,GAAG,EAAE,mCAAmC;QACxC,GAAG,EAAE,+BAA+B;QACpC,GAAG,EAAE,+BAA+B;QACpC,GAAG,EAAE,mDAAmD;KACzD;IACD,mBAAmB,EAAE,2BAA2B;CACjD,CAAC,CAAA"}
|
|
@@ -34,3 +34,38 @@ export declare const INTEGRATION_PROJECT_ALREADY_EXISTS_ERROR_RESPONSE_SCHEMA: z
|
|
|
34
34
|
errorCode: z.ZodLiteral<"INTEGRATION_PROJECT_ALREADY_EXISTS">;
|
|
35
35
|
}, z.core.$strip>;
|
|
36
36
|
export type IntegrationProjectAlreadyExistsErrorResponse = z.infer<typeof INTEGRATION_PROJECT_ALREADY_EXISTS_ERROR_RESPONSE_SCHEMA>;
|
|
37
|
+
/**
|
|
38
|
+
* Path parameters for triggering import on an already connected integration-project
|
|
39
|
+
*/
|
|
40
|
+
export declare const POST_TRIGGER_IMPORT_PATH_PARAMS_SCHEMA: z.ZodObject<{
|
|
41
|
+
integrationId: z.ZodGUID;
|
|
42
|
+
projectId: z.ZodGUID;
|
|
43
|
+
}, z.core.$strip>;
|
|
44
|
+
export type PostTriggerImportPathParams = z.infer<typeof POST_TRIGGER_IMPORT_PATH_PARAMS_SCHEMA>;
|
|
45
|
+
/**
|
|
46
|
+
* Request body for triggering import on an already connected project
|
|
47
|
+
*/
|
|
48
|
+
export declare const POST_TRIGGER_IMPORT_BODY_SCHEMA: z.ZodObject<{
|
|
49
|
+
selectedItems: z.ZodArray<z.ZodString>;
|
|
50
|
+
}, z.core.$strip>;
|
|
51
|
+
export type PostTriggerImportBody = z.infer<typeof POST_TRIGGER_IMPORT_BODY_SCHEMA>;
|
|
52
|
+
/**
|
|
53
|
+
* Success response after triggering import
|
|
54
|
+
*/
|
|
55
|
+
export declare const POST_TRIGGER_IMPORT_RESPONSE_SCHEMA: z.ZodObject<{
|
|
56
|
+
jobId: z.ZodString;
|
|
57
|
+
}, z.core.$strip>;
|
|
58
|
+
export type PostTriggerImportResponse = z.infer<typeof POST_TRIGGER_IMPORT_RESPONSE_SCHEMA>;
|
|
59
|
+
/**
|
|
60
|
+
* Error code for when IntegrationProject does not exist (project not connected)
|
|
61
|
+
*/
|
|
62
|
+
export declare const INTEGRATION_PROJECT_NOT_FOUND_ERROR_CODE: "INTEGRATION_PROJECT_NOT_FOUND";
|
|
63
|
+
/**
|
|
64
|
+
* Error response schema for when IntegrationProject is not found (404 Not Found)
|
|
65
|
+
*/
|
|
66
|
+
export declare const INTEGRATION_PROJECT_NOT_FOUND_ERROR_RESPONSE_SCHEMA: z.ZodObject<{
|
|
67
|
+
message: z.ZodString;
|
|
68
|
+
details: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
69
|
+
errorCode: z.ZodLiteral<"INTEGRATION_PROJECT_NOT_FOUND">;
|
|
70
|
+
}, z.core.$strip>;
|
|
71
|
+
export type IntegrationProjectNotFoundErrorResponse = z.infer<typeof INTEGRATION_PROJECT_NOT_FOUND_ERROR_RESPONSE_SCHEMA>;
|
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
import { z } from 'zod/v4';
|
|
2
2
|
import { COMMON_ERROR_RESPONSE_SCHEMA_V2 } from "../commonRequestSchemas.js";
|
|
3
|
+
// ============================================================================
|
|
4
|
+
// Connect Integration Project Schemas
|
|
5
|
+
// POST /v1/integrations/{integrationId}/projects/actions/connect
|
|
6
|
+
// ============================================================================
|
|
3
7
|
/**
|
|
4
8
|
* Path parameters for connecting an integration with a project
|
|
5
9
|
*/
|
|
@@ -44,4 +48,52 @@ export const INTEGRATION_PROJECT_ALREADY_EXISTS_ERROR_CODE = 'INTEGRATION_PROJEC
|
|
|
44
48
|
export const INTEGRATION_PROJECT_ALREADY_EXISTS_ERROR_RESPONSE_SCHEMA = COMMON_ERROR_RESPONSE_SCHEMA_V2.extend({
|
|
45
49
|
errorCode: z.literal(INTEGRATION_PROJECT_ALREADY_EXISTS_ERROR_CODE),
|
|
46
50
|
});
|
|
51
|
+
// ============================================================================
|
|
52
|
+
// Trigger Import Schemas
|
|
53
|
+
// POST /v1/integrations/{integrationId}/projects/{projectId}/actions/import
|
|
54
|
+
// ============================================================================
|
|
55
|
+
/**
|
|
56
|
+
* Path parameters for triggering import on an already connected integration-project
|
|
57
|
+
*/
|
|
58
|
+
export const POST_TRIGGER_IMPORT_PATH_PARAMS_SCHEMA = z.object({
|
|
59
|
+
/**
|
|
60
|
+
* The integration UUID
|
|
61
|
+
*/
|
|
62
|
+
integrationId: z.guid(),
|
|
63
|
+
/**
|
|
64
|
+
* The project UUID (must already be connected to the integration)
|
|
65
|
+
*/
|
|
66
|
+
projectId: z.guid(),
|
|
67
|
+
});
|
|
68
|
+
/**
|
|
69
|
+
* Request body for triggering import on an already connected project
|
|
70
|
+
*/
|
|
71
|
+
export const POST_TRIGGER_IMPORT_BODY_SCHEMA = z.object({
|
|
72
|
+
/**
|
|
73
|
+
* Array of item uniqueIds (file IDs) selected from the itemList endpoint.
|
|
74
|
+
* These are the files/items that will be processed in the background import job.
|
|
75
|
+
*/
|
|
76
|
+
selectedItems: z
|
|
77
|
+
.array(z.string().min(1))
|
|
78
|
+
.min(1, { message: 'At least one item must be selected' }),
|
|
79
|
+
});
|
|
80
|
+
/**
|
|
81
|
+
* Success response after triggering import
|
|
82
|
+
*/
|
|
83
|
+
export const POST_TRIGGER_IMPORT_RESPONSE_SCHEMA = z.object({
|
|
84
|
+
/**
|
|
85
|
+
* Background job identifier for tracking the import process
|
|
86
|
+
*/
|
|
87
|
+
jobId: z.string().min(1),
|
|
88
|
+
});
|
|
89
|
+
/**
|
|
90
|
+
* Error code for when IntegrationProject does not exist (project not connected)
|
|
91
|
+
*/
|
|
92
|
+
export const INTEGRATION_PROJECT_NOT_FOUND_ERROR_CODE = 'INTEGRATION_PROJECT_NOT_FOUND';
|
|
93
|
+
/**
|
|
94
|
+
* Error response schema for when IntegrationProject is not found (404 Not Found)
|
|
95
|
+
*/
|
|
96
|
+
export const INTEGRATION_PROJECT_NOT_FOUND_ERROR_RESPONSE_SCHEMA = COMMON_ERROR_RESPONSE_SCHEMA_V2.extend({
|
|
97
|
+
errorCode: z.literal(INTEGRATION_PROJECT_NOT_FOUND_ERROR_CODE),
|
|
98
|
+
});
|
|
47
99
|
//# sourceMappingURL=integrationProjectSchemas.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"integrationProjectSchemas.js","sourceRoot":"","sources":["../../../src/schemas/integrationProject/integrationProjectSchemas.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAA;AAC1B,OAAO,EAAE,+BAA+B,EAAE,MAAM,4BAA4B,CAAA;AAE5E;;GAEG;AACH,MAAM,CAAC,MAAM,mDAAmD,GAAG,CAAC,CAAC,MAAM,CAAC;IAC1E;;OAEG;IACH,aAAa,EAAE,CAAC,CAAC,IAAI,EAAE;CACxB,CAAC,CAAA;AAMF;;GAEG;AACH,MAAM,CAAC,MAAM,4CAA4C,GAAG,CAAC,CAAC,MAAM,CAAC;IACnE;;OAEG;IACH,SAAS,EAAE,CAAC,CAAC,IAAI,EAAE;IACnB;;;OAGG;IACH,aAAa,EAAE,CAAC;SACb,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;SACxB,GAAG,CAAC,CAAC,EAAE,EAAE,OAAO,EAAE,oCAAoC,EAAE,CAAC;CAC7D,CAAC,CAAA;AAMF;;GAEG;AACH,MAAM,CAAC,MAAM,gDAAgD,GAAG,CAAC,CAAC,MAAM,CAAC;IACvE;;OAEG;IACH,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;CACzB,CAAC,CAAA;AAMF;;GAEG;AACH,MAAM,CAAC,MAAM,6CAA6C,GACxD,oCAA6C,CAAA;AAE/C;;GAEG;AACH,MAAM,CAAC,MAAM,wDAAwD,GACnE,+BAA+B,CAAC,MAAM,CAAC;IACrC,SAAS,EAAE,CAAC,CAAC,OAAO,CAAC,6CAA6C,CAAC;CACpE,CAAC,CAAA"}
|
|
1
|
+
{"version":3,"file":"integrationProjectSchemas.js","sourceRoot":"","sources":["../../../src/schemas/integrationProject/integrationProjectSchemas.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,QAAQ,CAAA;AAC1B,OAAO,EAAE,+BAA+B,EAAE,MAAM,4BAA4B,CAAA;AAE5E,+EAA+E;AAC/E,sCAAsC;AACtC,iEAAiE;AACjE,+EAA+E;AAE/E;;GAEG;AACH,MAAM,CAAC,MAAM,mDAAmD,GAAG,CAAC,CAAC,MAAM,CAAC;IAC1E;;OAEG;IACH,aAAa,EAAE,CAAC,CAAC,IAAI,EAAE;CACxB,CAAC,CAAA;AAMF;;GAEG;AACH,MAAM,CAAC,MAAM,4CAA4C,GAAG,CAAC,CAAC,MAAM,CAAC;IACnE;;OAEG;IACH,SAAS,EAAE,CAAC,CAAC,IAAI,EAAE;IACnB;;;OAGG;IACH,aAAa,EAAE,CAAC;SACb,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;SACxB,GAAG,CAAC,CAAC,EAAE,EAAE,OAAO,EAAE,oCAAoC,EAAE,CAAC;CAC7D,CAAC,CAAA;AAMF;;GAEG;AACH,MAAM,CAAC,MAAM,gDAAgD,GAAG,CAAC,CAAC,MAAM,CAAC;IACvE;;OAEG;IACH,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;CACzB,CAAC,CAAA;AAMF;;GAEG;AACH,MAAM,CAAC,MAAM,6CAA6C,GACxD,oCAA6C,CAAA;AAE/C;;GAEG;AACH,MAAM,CAAC,MAAM,wDAAwD,GACnE,+BAA+B,CAAC,MAAM,CAAC;IACrC,SAAS,EAAE,CAAC,CAAC,OAAO,CAAC,6CAA6C,CAAC;CACpE,CAAC,CAAA;AAMJ,+EAA+E;AAC/E,yBAAyB;AACzB,4EAA4E;AAC5E,+EAA+E;AAE/E;;GAEG;AACH,MAAM,CAAC,MAAM,sCAAsC,GAAG,CAAC,CAAC,MAAM,CAAC;IAC7D;;OAEG;IACH,aAAa,EAAE,CAAC,CAAC,IAAI,EAAE;IACvB;;OAEG;IACH,SAAS,EAAE,CAAC,CAAC,IAAI,EAAE;CACpB,CAAC,CAAA;AAIF;;GAEG;AACH,MAAM,CAAC,MAAM,+BAA+B,GAAG,CAAC,CAAC,MAAM,CAAC;IACtD;;;OAGG;IACH,aAAa,EAAE,CAAC;SACb,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;SACxB,GAAG,CAAC,CAAC,EAAE,EAAE,OAAO,EAAE,oCAAoC,EAAE,CAAC;CAC7D,CAAC,CAAA;AAIF;;GAEG;AACH,MAAM,CAAC,MAAM,mCAAmC,GAAG,CAAC,CAAC,MAAM,CAAC;IAC1D;;OAEG;IACH,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;CACzB,CAAC,CAAA;AAIF;;GAEG;AACH,MAAM,CAAC,MAAM,wCAAwC,GAAG,+BAAwC,CAAA;AAEhG;;GAEG;AACH,MAAM,CAAC,MAAM,mDAAmD,GAC9D,+BAA+B,CAAC,MAAM,CAAC;IACrC,SAAS,EAAE,CAAC,CAAC,OAAO,CAAC,wCAAwC,CAAC;CAC/D,CAAC,CAAA"}
|