@shipfox/api-definitions-dto 12.0.0 → 12.2.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.
@@ -1,2 +1,2 @@
1
1
  $ shipfox-swc
2
- Successfully compiled: 7 files with swc (190.94ms)
2
+ Successfully compiled: 7 files with swc (412.8ms)
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # @shipfox/api-definitions-dto
2
2
 
3
+ ## 12.2.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [ce0984d]
8
+ - @shipfox/expression@2.1.0
9
+ - @shipfox/workflow-document@3.0.1
10
+
3
11
  ## 12.0.0
4
12
 
5
13
  ### Major Changes
package/dist/events.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import { z } from 'zod';
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";
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;
@@ -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
- readonly getDefinitionForWorkflowRun: {
20
- readonly input: z.ZodObject<{
19
+ getDefinitionForWorkflowRun: {
20
+ input: z.ZodObject<{
21
21
  definitionId: z.ZodString;
22
22
  }, z.core.$strip>;
23
- readonly output: z.ZodObject<{
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;;;;;;;;;;;;;;;;;;;;;;;;EAQzC,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"}
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"}
@@ -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
- failed: "failed";
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
- unknown: "unknown";
90
- "no-workflow-files": "no-workflow-files";
89
+ "connection-unavailable": "connection-unavailable";
90
+ "content-too-large": "content-too-large";
91
91
  "invalid-definition": "invalid-definition";
92
- "provider-repository-not-found": "provider-repository-not-found";
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
- "connection-unavailable": "connection-unavailable";
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
- failed: "failed";
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
- unknown: "unknown";
145
- "no-workflow-files": "no-workflow-files";
144
+ "connection-unavailable": "connection-unavailable";
145
+ "content-too-large": "content-too-large";
146
146
  "invalid-definition": "invalid-definition";
147
- "provider-repository-not-found": "provider-repository-not-found";
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
- "connection-unavailable": "connection-unavailable";
156
+ unknown: "unknown";
157
157
  }>>;
158
158
  last_error_message: z.ZodNullable<z.ZodString>;
159
159
  warnings: z.ZodArray<z.ZodObject<{