@shipfox/api-definitions-dto 12.0.0 → 12.3.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/.turbo/turbo-build.log +1 -1
- package/CHANGELOG.md +15 -0
- package/dist/events.d.ts +3 -3
- package/dist/inter-module.d.ts +3 -3
- package/dist/inter-module.d.ts.map +1 -1
- package/dist/schemas/dto.d.ts +18 -18
- package/dist/tsconfig.test.tsbuildinfo +1 -1
- package/package.json +3 -3
- package/tsconfig.build.tsbuildinfo +1 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
$ shipfox-swc
|
|
2
|
-
Successfully compiled: 7 files with swc (
|
|
2
|
+
Successfully compiled: 7 files with swc (295.4ms)
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @shipfox/api-definitions-dto
|
|
2
2
|
|
|
3
|
+
## 12.3.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [3e7fe76]
|
|
8
|
+
- @shipfox/expression@2.2.0
|
|
9
|
+
|
|
10
|
+
## 12.2.0
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [ce0984d]
|
|
15
|
+
- @shipfox/expression@2.1.0
|
|
16
|
+
- @shipfox/workflow-document@3.0.1
|
|
17
|
+
|
|
3
18
|
## 12.0.0
|
|
4
19
|
|
|
5
20
|
### Major Changes
|
package/dist/events.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
export declare const DEFINITION_RESOLVED:
|
|
3
|
-
export declare const DEFINITION_DELETED:
|
|
4
|
-
export declare const DEFINITION_INVALID:
|
|
2
|
+
export declare const DEFINITION_RESOLVED: 'definitions.definition.resolved';
|
|
3
|
+
export declare const DEFINITION_DELETED: 'definitions.definition.deleted';
|
|
4
|
+
export declare const DEFINITION_INVALID: 'definitions.definition.invalid';
|
|
5
5
|
export declare const definitionResolvedEventSchema: z.ZodObject<{
|
|
6
6
|
definitionId: z.ZodString;
|
|
7
7
|
projectId: z.ZodString;
|
package/dist/inter-module.d.ts
CHANGED
|
@@ -16,11 +16,11 @@ declare const definitionSnapshotSchema: z.ZodObject<{
|
|
|
16
16
|
export declare const definitionsInterModuleContract: import("@shipfox/inter-module").InterModuleContract<{
|
|
17
17
|
readonly module: "definitions";
|
|
18
18
|
readonly methods: {
|
|
19
|
-
|
|
20
|
-
|
|
19
|
+
getDefinitionForWorkflowRun: {
|
|
20
|
+
input: z.ZodObject<{
|
|
21
21
|
definitionId: z.ZodString;
|
|
22
22
|
}, z.core.$strip>;
|
|
23
|
-
|
|
23
|
+
output: z.ZodObject<{
|
|
24
24
|
definition: z.ZodNullable<z.ZodObject<{
|
|
25
25
|
id: z.ZodString;
|
|
26
26
|
projectId: z.ZodString;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"inter-module.d.ts","sourceRoot":"","sources":["../src/inter-module.ts"],"names":[],"mappings":"AAAA,OAAO,EAA4B,KAAK,iBAAiB,EAAC,MAAM,uBAAuB,CAAC;AACxF,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAC;AAItB,QAAA,MAAM,wBAAwB;;;;;;;;;;;;iBAM5B,CAAC;AAEH,eAAO,MAAM,8BAA8B
|
|
1
|
+
{"version":3,"file":"inter-module.d.ts","sourceRoot":"","sources":["../src/inter-module.ts"],"names":[],"mappings":"AAAA,OAAO,EAA4B,KAAK,iBAAiB,EAAC,MAAM,uBAAuB,CAAC;AACxF,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAC;AAItB,QAAA,MAAM,wBAAwB;;;;;;;;;;;;iBAM5B,CAAC;AAEH,eAAO,MAAM,8BAA8B;;;QAGvC,2BAA2B;YACzB,KAAK;;;YACL,MAAM;;;;;;;;;;;;;;;;;EAGV,CAAC;AAEH,MAAM,MAAM,4BAA4B,GAAG,iBAAiB,CAAC,OAAO,8BAA8B,CAAC,CAAC;AACpG,MAAM,MAAM,0BAA0B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC"}
|
package/dist/schemas/dto.d.ts
CHANGED
|
@@ -77,28 +77,28 @@ export type DefinitionListQueryDto = z.infer<typeof definitionListQuerySchema>;
|
|
|
77
77
|
export declare const definitionSyncSummarySchema: z.ZodObject<{
|
|
78
78
|
ref: z.ZodNullable<z.ZodString>;
|
|
79
79
|
status: z.ZodEnum<{
|
|
80
|
+
failed: "failed";
|
|
80
81
|
pending: "pending";
|
|
81
|
-
syncing: "syncing";
|
|
82
82
|
succeeded: "succeeded";
|
|
83
|
-
|
|
83
|
+
syncing: "syncing";
|
|
84
84
|
}>;
|
|
85
85
|
last_sync_at: z.ZodString;
|
|
86
86
|
started_at: z.ZodNullable<z.ZodString>;
|
|
87
87
|
finished_at: z.ZodNullable<z.ZodString>;
|
|
88
88
|
last_error_code: z.ZodNullable<z.ZodEnum<{
|
|
89
|
-
|
|
90
|
-
"
|
|
89
|
+
"connection-unavailable": "connection-unavailable";
|
|
90
|
+
"content-too-large": "content-too-large";
|
|
91
91
|
"invalid-definition": "invalid-definition";
|
|
92
|
-
"
|
|
93
|
-
"provider-file-not-found": "provider-file-not-found";
|
|
92
|
+
"no-workflow-files": "no-workflow-files";
|
|
94
93
|
"provider-access-denied": "provider-access-denied";
|
|
94
|
+
"provider-file-not-found": "provider-file-not-found";
|
|
95
|
+
"provider-malformed-response": "provider-malformed-response";
|
|
95
96
|
"provider-rate-limited": "provider-rate-limited";
|
|
97
|
+
"provider-repository-not-found": "provider-repository-not-found";
|
|
96
98
|
"provider-timeout": "provider-timeout";
|
|
97
99
|
"provider-unavailable": "provider-unavailable";
|
|
98
|
-
"provider-malformed-response": "provider-malformed-response";
|
|
99
|
-
"content-too-large": "content-too-large";
|
|
100
100
|
"too-many-files": "too-many-files";
|
|
101
|
-
|
|
101
|
+
unknown: "unknown";
|
|
102
102
|
}>>;
|
|
103
103
|
last_error_message: z.ZodNullable<z.ZodString>;
|
|
104
104
|
warnings: z.ZodArray<z.ZodObject<{
|
|
@@ -132,28 +132,28 @@ export declare const definitionListResponseSchema: z.ZodObject<{
|
|
|
132
132
|
sync: z.ZodNullable<z.ZodObject<{
|
|
133
133
|
ref: z.ZodNullable<z.ZodString>;
|
|
134
134
|
status: z.ZodEnum<{
|
|
135
|
+
failed: "failed";
|
|
135
136
|
pending: "pending";
|
|
136
|
-
syncing: "syncing";
|
|
137
137
|
succeeded: "succeeded";
|
|
138
|
-
|
|
138
|
+
syncing: "syncing";
|
|
139
139
|
}>;
|
|
140
140
|
last_sync_at: z.ZodString;
|
|
141
141
|
started_at: z.ZodNullable<z.ZodString>;
|
|
142
142
|
finished_at: z.ZodNullable<z.ZodString>;
|
|
143
143
|
last_error_code: z.ZodNullable<z.ZodEnum<{
|
|
144
|
-
|
|
145
|
-
"
|
|
144
|
+
"connection-unavailable": "connection-unavailable";
|
|
145
|
+
"content-too-large": "content-too-large";
|
|
146
146
|
"invalid-definition": "invalid-definition";
|
|
147
|
-
"
|
|
148
|
-
"provider-file-not-found": "provider-file-not-found";
|
|
147
|
+
"no-workflow-files": "no-workflow-files";
|
|
149
148
|
"provider-access-denied": "provider-access-denied";
|
|
149
|
+
"provider-file-not-found": "provider-file-not-found";
|
|
150
|
+
"provider-malformed-response": "provider-malformed-response";
|
|
150
151
|
"provider-rate-limited": "provider-rate-limited";
|
|
152
|
+
"provider-repository-not-found": "provider-repository-not-found";
|
|
151
153
|
"provider-timeout": "provider-timeout";
|
|
152
154
|
"provider-unavailable": "provider-unavailable";
|
|
153
|
-
"provider-malformed-response": "provider-malformed-response";
|
|
154
|
-
"content-too-large": "content-too-large";
|
|
155
155
|
"too-many-files": "too-many-files";
|
|
156
|
-
|
|
156
|
+
unknown: "unknown";
|
|
157
157
|
}>>;
|
|
158
158
|
last_error_message: z.ZodNullable<z.ZodString>;
|
|
159
159
|
warnings: z.ZodArray<z.ZodObject<{
|