Skip to content

Commit e0bb0ff

Browse files
feat: update schema
1 parent 039a2da commit e0bb0ff

File tree

5 files changed

+19
-2
lines changed

5 files changed

+19
-2
lines changed

.changeset/itchy-jars-pull.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@json-types/compose": minor
3+
---
4+
5+
Update schema

packages/compose/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ import schema from "@json-types/compose/schema.json";
2222

2323
TypeScript types generated automatically every night and published when there are changes.
2424

25-
- Last change: 2025-09-03T01:47:32.401Z
25+
- Last change: 2025-10-29T02:01:37.441Z
2626
- Source URL: https://raw.githubusercontent.com/compose-spec/compose-spec/master/schema/compose-spec.json

packages/compose/index.d.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,10 @@ export type Development = {
5757
*/
5858
target?: string;
5959
exec?: ServiceHook;
60+
/**
61+
* Ensure that an initial synchronization is done before starting watch mode for sync+x triggers
62+
*/
63+
initial_sync?: boolean;
6064
}[];
6165
} & Development1;
6266
export type Development1 = {
@@ -85,6 +89,10 @@ export type Development1 = {
8589
*/
8690
target?: string;
8791
exec?: ServiceHook;
92+
/**
93+
* Ensure that an initial synchronization is done before starting watch mode for sync+x triggers
94+
*/
95+
initial_sync?: boolean;
8896
}[];
8997
} | null;
9098
/**

packages/compose/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"compose-spec"
1515
],
1616
"x-json-types": {
17-
"lastChangeDate": "2025-09-03T01:47:32.401Z"
17+
"lastChangeDate": "2025-10-29T02:01:37.441Z"
1818
},
1919
"homepage": "https://github.com/swordev/json-types/tree/main/packages/compose",
2020
"bugs": {

packages/compose/schema.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1324,6 +1324,10 @@
13241324
"exec": {
13251325
"$ref": "#/definitions/service_hook",
13261326
"description": "Command to execute when a change is detected and action is sync+exec."
1327+
},
1328+
"initial_sync": {
1329+
"type": "boolean",
1330+
"description": "Ensure that an initial synchronization is done before starting watch mode for sync+x triggers"
13271331
}
13281332
},
13291333
"additionalProperties": false

0 commit comments

Comments
 (0)