@lokalise/content-type-app-engine-contracts 4.9.0 → 4.11.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 +82 -0
- package/dist/schemas/integrationProject/integrationProjectApiSchemas.js +49 -1
- package/dist/schemas/integrationProject/integrationProjectApiSchemas.js.map +1 -1
- package/dist/schemas/integrationProject/integrationProjectSchemas.d.ts +30 -0
- package/dist/schemas/integrationProject/integrationProjectSchemas.js +24 -0
- package/dist/schemas/integrationProject/integrationProjectSchemas.js.map +1 -1
- package/package.json +2 -2
|
@@ -131,3 +131,85 @@ export declare const postTriggerImportContract: import("@lokalise/api-contracts"
|
|
|
131
131
|
details: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodAny>>;
|
|
132
132
|
}, import("zod/v4/core").$strip>;
|
|
133
133
|
}>;
|
|
134
|
+
/**
|
|
135
|
+
* Contract for retrieving integrations for multiple projects
|
|
136
|
+
* POST /v1/integrations/actions/retrieve-batch
|
|
137
|
+
*
|
|
138
|
+
* This endpoint returns integration details (id, type, and friendly name) for each requested project
|
|
139
|
+
* that has an integration in the caller's workspace (derived from the auth token).
|
|
140
|
+
* A project may have multiple integrations.
|
|
141
|
+
* Only connectors from `BatchIntegrationEnum` are included in the response.
|
|
142
|
+
* Projects that don't belong to the workspace or have no matching integrations are silently skipped.
|
|
143
|
+
*
|
|
144
|
+
* ## Request
|
|
145
|
+
*
|
|
146
|
+
* **Body:**
|
|
147
|
+
* - `projectIds`: Array of project UUIDs to look up (1–100)
|
|
148
|
+
*
|
|
149
|
+
* ## Response
|
|
150
|
+
*
|
|
151
|
+
* **Success (200 OK):**
|
|
152
|
+
* ```json
|
|
153
|
+
* {
|
|
154
|
+
* "data": [
|
|
155
|
+
* {
|
|
156
|
+
* "projectId": "project-uuid",
|
|
157
|
+
* "integrations": [
|
|
158
|
+
* { "id": "integration-uuid", "type": "google-drive", "name": "Google Drive" }
|
|
159
|
+
* ]
|
|
160
|
+
* }
|
|
161
|
+
* ]
|
|
162
|
+
* }
|
|
163
|
+
* ```
|
|
164
|
+
*
|
|
165
|
+
* **Error Responses:**
|
|
166
|
+
* - 400: Invalid request (empty projectIds, invalid format)
|
|
167
|
+
* - 401: Unauthorized (missing or invalid authentication)
|
|
168
|
+
*/
|
|
169
|
+
export declare const postRetrieveBatchIntegrationsContract: import("@lokalise/api-contracts").PayloadRouteDefinition<import("zod").ZodObject<{
|
|
170
|
+
projectIds: import("zod").ZodArray<import("zod").ZodGUID>;
|
|
171
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
172
|
+
data: import("zod").ZodArray<import("zod").ZodObject<{
|
|
173
|
+
projectId: import("zod").ZodGUID;
|
|
174
|
+
integrations: import("zod").ZodArray<import("zod").ZodObject<{
|
|
175
|
+
id: import("zod").ZodGUID;
|
|
176
|
+
type: import("zod").ZodEnum<{
|
|
177
|
+
readonly adobeExperienceManager: "adobe-experience-manager";
|
|
178
|
+
readonly contentful: "contentful-native";
|
|
179
|
+
readonly googleDrive: "google-drive";
|
|
180
|
+
readonly strapi: "strapi";
|
|
181
|
+
readonly webflowNew: "webflow-new";
|
|
182
|
+
}>;
|
|
183
|
+
name: import("zod").ZodString;
|
|
184
|
+
}, import("zod/v4/core").$strip>>;
|
|
185
|
+
}, import("zod/v4/core").$strip>>;
|
|
186
|
+
}, import("zod/v4/core").$strip>, undefined, undefined, import("zod").ZodObject<{
|
|
187
|
+
authorization: import("zod").ZodOptional<import("zod").ZodString>;
|
|
188
|
+
}, import("zod/v4/core").$strip>, undefined, false, false, {
|
|
189
|
+
200: import("zod").ZodObject<{
|
|
190
|
+
data: import("zod").ZodArray<import("zod").ZodObject<{
|
|
191
|
+
projectId: import("zod").ZodGUID;
|
|
192
|
+
integrations: import("zod").ZodArray<import("zod").ZodObject<{
|
|
193
|
+
id: import("zod").ZodGUID;
|
|
194
|
+
type: import("zod").ZodEnum<{
|
|
195
|
+
readonly adobeExperienceManager: "adobe-experience-manager";
|
|
196
|
+
readonly contentful: "contentful-native";
|
|
197
|
+
readonly googleDrive: "google-drive";
|
|
198
|
+
readonly strapi: "strapi";
|
|
199
|
+
readonly webflowNew: "webflow-new";
|
|
200
|
+
}>;
|
|
201
|
+
name: import("zod").ZodString;
|
|
202
|
+
}, import("zod/v4/core").$strip>>;
|
|
203
|
+
}, import("zod/v4/core").$strip>>;
|
|
204
|
+
}, import("zod/v4/core").$strip>;
|
|
205
|
+
400: import("zod").ZodObject<{
|
|
206
|
+
message: import("zod").ZodString;
|
|
207
|
+
errorCode: import("zod").ZodString;
|
|
208
|
+
details: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodAny>>;
|
|
209
|
+
}, import("zod/v4/core").$strip>;
|
|
210
|
+
401: import("zod").ZodObject<{
|
|
211
|
+
message: import("zod").ZodString;
|
|
212
|
+
errorCode: import("zod").ZodString;
|
|
213
|
+
details: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodAny>>;
|
|
214
|
+
}, import("zod/v4/core").$strip>;
|
|
215
|
+
}>;
|
|
@@ -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, POST_TRIGGER_IMPORT_BODY_SCHEMA, POST_TRIGGER_IMPORT_PATH_PARAMS_SCHEMA, POST_TRIGGER_IMPORT_RESPONSE_SCHEMA, } from "./integrationProjectSchemas.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, POST_RETRIEVE_BATCH_INTEGRATIONS_BODY_SCHEMA, POST_RETRIEVE_BATCH_INTEGRATIONS_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
|
|
@@ -102,4 +102,52 @@ export const postTriggerImportContract = buildPayloadRoute({
|
|
|
102
102
|
},
|
|
103
103
|
requestHeaderSchema: AUTHORIZATION_HEADER_SCHEMA,
|
|
104
104
|
});
|
|
105
|
+
/**
|
|
106
|
+
* Contract for retrieving integrations for multiple projects
|
|
107
|
+
* POST /v1/integrations/actions/retrieve-batch
|
|
108
|
+
*
|
|
109
|
+
* This endpoint returns integration details (id, type, and friendly name) for each requested project
|
|
110
|
+
* that has an integration in the caller's workspace (derived from the auth token).
|
|
111
|
+
* A project may have multiple integrations.
|
|
112
|
+
* Only connectors from `BatchIntegrationEnum` are included in the response.
|
|
113
|
+
* Projects that don't belong to the workspace or have no matching integrations are silently skipped.
|
|
114
|
+
*
|
|
115
|
+
* ## Request
|
|
116
|
+
*
|
|
117
|
+
* **Body:**
|
|
118
|
+
* - `projectIds`: Array of project UUIDs to look up (1–100)
|
|
119
|
+
*
|
|
120
|
+
* ## Response
|
|
121
|
+
*
|
|
122
|
+
* **Success (200 OK):**
|
|
123
|
+
* ```json
|
|
124
|
+
* {
|
|
125
|
+
* "data": [
|
|
126
|
+
* {
|
|
127
|
+
* "projectId": "project-uuid",
|
|
128
|
+
* "integrations": [
|
|
129
|
+
* { "id": "integration-uuid", "type": "google-drive", "name": "Google Drive" }
|
|
130
|
+
* ]
|
|
131
|
+
* }
|
|
132
|
+
* ]
|
|
133
|
+
* }
|
|
134
|
+
* ```
|
|
135
|
+
*
|
|
136
|
+
* **Error Responses:**
|
|
137
|
+
* - 400: Invalid request (empty projectIds, invalid format)
|
|
138
|
+
* - 401: Unauthorized (missing or invalid authentication)
|
|
139
|
+
*/
|
|
140
|
+
export const postRetrieveBatchIntegrationsContract = buildPayloadRoute({
|
|
141
|
+
method: 'post',
|
|
142
|
+
pathResolver: () => '/v1/integrations/actions/retrieve-batch',
|
|
143
|
+
description: 'Retrieve integrations for a batch of projects in the caller workspace',
|
|
144
|
+
requestBodySchema: POST_RETRIEVE_BATCH_INTEGRATIONS_BODY_SCHEMA,
|
|
145
|
+
successResponseBodySchema: POST_RETRIEVE_BATCH_INTEGRATIONS_RESPONSE_SCHEMA,
|
|
146
|
+
responseSchemasByStatusCode: {
|
|
147
|
+
200: POST_RETRIEVE_BATCH_INTEGRATIONS_RESPONSE_SCHEMA,
|
|
148
|
+
400: COMMON_ERROR_RESPONSE_SCHEMA_V2,
|
|
149
|
+
401: COMMON_ERROR_RESPONSE_SCHEMA_V2,
|
|
150
|
+
},
|
|
151
|
+
requestHeaderSchema: AUTHORIZATION_HEADER_SCHEMA,
|
|
152
|
+
});
|
|
105
153
|
//# 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,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,+BAA+B;KACrC;IACD,mBAAmB,EAAE,2BAA2B;CACjD,CAAC,CAAA"}
|
|
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,EAChD,4CAA4C,EAC5C,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,+BAA+B;KACrC;IACD,mBAAmB,EAAE,2BAA2B;CACjD,CAAC,CAAA;AAEF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkCG;AACH,MAAM,CAAC,MAAM,qCAAqC,GAAG,iBAAiB,CAAC;IACrE,MAAM,EAAE,MAAM;IACd,YAAY,EAAE,GAAG,EAAE,CAAC,yCAAyC;IAC7D,WAAW,EAAE,uEAAuE;IACpF,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;KACrC;IACD,mBAAmB,EAAE,2BAA2B;CACjD,CAAC,CAAA"}
|
|
@@ -69,3 +69,33 @@ export declare const INTEGRATION_PROJECT_NOT_FOUND_ERROR_RESPONSE_SCHEMA: z.ZodO
|
|
|
69
69
|
errorCode: z.ZodLiteral<"INTEGRATION_PROJECT_NOT_FOUND">;
|
|
70
70
|
}, z.core.$strip>;
|
|
71
71
|
export type IntegrationProjectNotFoundErrorResponse = z.infer<typeof INTEGRATION_PROJECT_NOT_FOUND_ERROR_RESPONSE_SCHEMA>;
|
|
72
|
+
export declare const MAX_BATCH_PROJECT_IDS = 100;
|
|
73
|
+
export declare const POST_RETRIEVE_BATCH_INTEGRATIONS_BODY_SCHEMA: z.ZodObject<{
|
|
74
|
+
projectIds: z.ZodArray<z.ZodGUID>;
|
|
75
|
+
}, z.core.$strip>;
|
|
76
|
+
export type PostRetrieveBatchIntegrationsBody = z.infer<typeof POST_RETRIEVE_BATCH_INTEGRATIONS_BODY_SCHEMA>;
|
|
77
|
+
export declare const BatchIntegrationEnum: {
|
|
78
|
+
readonly adobeExperienceManager: "adobe-experience-manager";
|
|
79
|
+
readonly contentful: "contentful-native";
|
|
80
|
+
readonly googleDrive: "google-drive";
|
|
81
|
+
readonly strapi: "strapi";
|
|
82
|
+
readonly webflowNew: "webflow-new";
|
|
83
|
+
};
|
|
84
|
+
export type BatchIntegrationEnumType = (typeof BatchIntegrationEnum)[keyof typeof BatchIntegrationEnum];
|
|
85
|
+
export declare const POST_RETRIEVE_BATCH_INTEGRATIONS_RESPONSE_SCHEMA: z.ZodObject<{
|
|
86
|
+
data: z.ZodArray<z.ZodObject<{
|
|
87
|
+
projectId: z.ZodGUID;
|
|
88
|
+
integrations: z.ZodArray<z.ZodObject<{
|
|
89
|
+
id: z.ZodGUID;
|
|
90
|
+
type: z.ZodEnum<{
|
|
91
|
+
readonly adobeExperienceManager: "adobe-experience-manager";
|
|
92
|
+
readonly contentful: "contentful-native";
|
|
93
|
+
readonly googleDrive: "google-drive";
|
|
94
|
+
readonly strapi: "strapi";
|
|
95
|
+
readonly webflowNew: "webflow-new";
|
|
96
|
+
}>;
|
|
97
|
+
name: z.ZodString;
|
|
98
|
+
}, z.core.$strip>>;
|
|
99
|
+
}, z.core.$strip>>;
|
|
100
|
+
}, z.core.$strip>;
|
|
101
|
+
export type PostRetrieveBatchIntegrationsResponse = z.infer<typeof POST_RETRIEVE_BATCH_INTEGRATIONS_RESPONSE_SCHEMA>;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { z } from 'zod/v4';
|
|
2
2
|
import { COMMON_ERROR_RESPONSE_SCHEMA_V2 } from "../commonRequestSchemas.js";
|
|
3
|
+
import { IntegrationEnum } from "../project/projectSchemas.js";
|
|
3
4
|
// ============================================================================
|
|
4
5
|
// Connect Integration Project Schemas
|
|
5
6
|
// POST /v1/integrations/{integrationId}/projects/actions/connect
|
|
@@ -96,4 +97,27 @@ export const INTEGRATION_PROJECT_NOT_FOUND_ERROR_CODE = 'INTEGRATION_PROJECT_NOT
|
|
|
96
97
|
export const INTEGRATION_PROJECT_NOT_FOUND_ERROR_RESPONSE_SCHEMA = COMMON_ERROR_RESPONSE_SCHEMA_V2.extend({
|
|
97
98
|
errorCode: z.literal(INTEGRATION_PROJECT_NOT_FOUND_ERROR_CODE),
|
|
98
99
|
});
|
|
100
|
+
// ============================================================================
|
|
101
|
+
// Retrieve Batch Integration Projects Schemas
|
|
102
|
+
// POST /v1/workspaces/{workspaceId}/integrations/actions/retrieve-batch
|
|
103
|
+
// ============================================================================
|
|
104
|
+
export const MAX_BATCH_PROJECT_IDS = 100;
|
|
105
|
+
export const POST_RETRIEVE_BATCH_INTEGRATIONS_BODY_SCHEMA = z.object({
|
|
106
|
+
projectIds: z.array(z.guid()).min(1).max(MAX_BATCH_PROJECT_IDS),
|
|
107
|
+
});
|
|
108
|
+
export const BatchIntegrationEnum = {
|
|
109
|
+
...IntegrationEnum,
|
|
110
|
+
adobeExperienceManager: 'adobe-experience-manager',
|
|
111
|
+
};
|
|
112
|
+
const RETRIEVE_BATCH_INTEGRATION_ITEM_SCHEMA = z.object({
|
|
113
|
+
id: z.guid(),
|
|
114
|
+
type: z.enum(BatchIntegrationEnum),
|
|
115
|
+
name: z.string(),
|
|
116
|
+
});
|
|
117
|
+
export const POST_RETRIEVE_BATCH_INTEGRATIONS_RESPONSE_SCHEMA = z.object({
|
|
118
|
+
data: z.array(z.object({
|
|
119
|
+
projectId: z.guid(),
|
|
120
|
+
integrations: z.array(RETRIEVE_BATCH_INTEGRATION_ITEM_SCHEMA).min(1),
|
|
121
|
+
})),
|
|
122
|
+
});
|
|
99
123
|
//# 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;
|
|
1
|
+
{"version":3,"file":"integrationProjectSchemas.js","sourceRoot":"","sources":["../../../src/schemas/integrationProject/integrationProjectSchemas.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lokalise/content-type-app-engine-contracts",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.11.0",
|
|
4
4
|
"description": "Content Type App Engine service contracts",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@lokalise/api-contracts": "^6.0.0",
|
|
31
|
-
"@lokalise/connector-api-contracts": "^2.
|
|
31
|
+
"@lokalise/connector-api-contracts": "^2.7.0",
|
|
32
32
|
"@lokalise/content-conversion-api-schemas": "^1.1.0"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|