@automate.ax/integration-contracts 0.109.0 → 0.109.1
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/linear/schemas.d.ts
CHANGED
|
@@ -4036,7 +4036,6 @@ export declare const LINEAR_PROJECT_SCHEMA: z.ZodObject<{
|
|
|
4036
4036
|
description: z.ZodString;
|
|
4037
4037
|
icon: z.ZodNullable<z.ZodString>;
|
|
4038
4038
|
id: z.ZodString;
|
|
4039
|
-
identifier: z.ZodNullable<z.ZodString>;
|
|
4040
4039
|
lead: z.ZodNullable<z.ZodObject<{
|
|
4041
4040
|
active: z.ZodBoolean;
|
|
4042
4041
|
avatarUrl: z.ZodNullable<z.ZodString>;
|
|
@@ -4431,7 +4430,6 @@ export declare const LINEAR_PROVIDER_PROJECT_SCHEMA: z.ZodObject<{
|
|
|
4431
4430
|
scope: z.ZodNumber;
|
|
4432
4431
|
icon: z.ZodNullable<z.ZodString>;
|
|
4433
4432
|
progress: z.ZodNumber;
|
|
4434
|
-
identifier: z.ZodNullable<z.ZodString>;
|
|
4435
4433
|
archivedAt: z.ZodNullable<z.ZodUnion<readonly [z.ZodDate, z.ZodPipe<z.ZodISODateTime, z.ZodTransform<Date, string>>]>>;
|
|
4436
4434
|
canceledAt: z.ZodNullable<z.ZodUnion<readonly [z.ZodDate, z.ZodPipe<z.ZodISODateTime, z.ZodTransform<Date, string>>]>>;
|
|
4437
4435
|
priorityLabel: z.ZodString;
|
package/dist/linear/schemas.js
CHANGED
|
@@ -951,8 +951,6 @@ export const LINEAR_PROJECT_SCHEMA = z.object({
|
|
|
951
951
|
icon: z.string().nullable(),
|
|
952
952
|
/** Stable Linear project ID. */
|
|
953
953
|
id: z.string(),
|
|
954
|
-
/** Human-readable project identifier, when assigned. */
|
|
955
|
-
identifier: z.string().nullable(),
|
|
956
954
|
/** Workspace user leading the project. */
|
|
957
955
|
lead: LINEAR_USER_REFERENCE_SCHEMA.nullable(),
|
|
958
956
|
/** Project members included in the response. */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@automate.ax/integration-contracts",
|
|
3
|
-
"version": "0.109.
|
|
3
|
+
"version": "0.109.1",
|
|
4
4
|
"description": "Shared integration payload contracts and provider primitives for Automate.ax.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
}
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"@automate.ax/codec": "0.109.
|
|
53
|
+
"@automate.ax/codec": "0.109.1",
|
|
54
54
|
"@cfworker/json-schema": "^4.1.1",
|
|
55
55
|
"@googleapis/calendar": "^15.0.0",
|
|
56
56
|
"@googleapis/forms": "^6.0.1",
|
package/src/linear/schemas.ts
CHANGED
|
@@ -1279,9 +1279,6 @@ export const LINEAR_PROJECT_SCHEMA = z.object({
|
|
|
1279
1279
|
/** Stable Linear project ID. */
|
|
1280
1280
|
id: z.string(),
|
|
1281
1281
|
|
|
1282
|
-
/** Human-readable project identifier, when assigned. */
|
|
1283
|
-
identifier: z.string().nullable(),
|
|
1284
|
-
|
|
1285
1282
|
/** Workspace user leading the project. */
|
|
1286
1283
|
lead: LINEAR_USER_REFERENCE_SCHEMA.nullable(),
|
|
1287
1284
|
|