create-ones-app 0.0.15 → 0.0.17

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/index.cjs CHANGED
@@ -6792,8 +6792,8 @@ const AppManifestJSONSchema = zod.z.object({
6792
6792
  type: zod.z.literal("jwt")
6793
6793
  }),
6794
6794
  ones_version: zod.z.object({
6795
- min: zod.z.string(),
6796
- max: zod.z.string()
6795
+ min: zod.z.string().optional(),
6796
+ max: zod.z.string().optional()
6797
6797
  }).optional(),
6798
6798
  lifecycle_callback: zod.z.object({
6799
6799
  install: zod.z.string(),
package/dist/index.js CHANGED
@@ -6789,8 +6789,8 @@ const AppManifestJSONSchema = z.object({
6789
6789
  type: z.literal("jwt")
6790
6790
  }),
6791
6791
  ones_version: z.object({
6792
- min: z.string(),
6793
- max: z.string()
6792
+ min: z.string().optional(),
6793
+ max: z.string().optional()
6794
6794
  }).optional(),
6795
6795
  lifecycle_callback: z.object({
6796
6796
  install: z.string(),
@@ -61,14 +61,14 @@ export declare const AppManifestJSONSchema: z.ZodObject<{
61
61
  type: "jwt";
62
62
  }>;
63
63
  ones_version: z.ZodOptional<z.ZodObject<{
64
- min: z.ZodString;
65
- max: z.ZodString;
64
+ min: z.ZodOptional<z.ZodString>;
65
+ max: z.ZodOptional<z.ZodString>;
66
66
  }, "strip", z.ZodTypeAny, {
67
- min: string;
68
- max: string;
67
+ min?: string | undefined;
68
+ max?: string | undefined;
69
69
  }, {
70
- min: string;
71
- max: string;
70
+ min?: string | undefined;
71
+ max?: string | undefined;
72
72
  }>>;
73
73
  lifecycle_callback: z.ZodObject<{
74
74
  install: z.ZodString;
@@ -137,8 +137,8 @@ export declare const AppManifestJSONSchema: z.ZodObject<{
137
137
  desc?: string | undefined;
138
138
  base_url?: string | undefined;
139
139
  ones_version?: {
140
- min: string;
141
- max: string;
140
+ min?: string | undefined;
141
+ max?: string | undefined;
142
142
  } | undefined;
143
143
  oauth?: {
144
144
  scope: string[];
@@ -169,8 +169,8 @@ export declare const AppManifestJSONSchema: z.ZodObject<{
169
169
  desc?: string | undefined;
170
170
  base_url?: string | undefined;
171
171
  ones_version?: {
172
- min: string;
173
- max: string;
172
+ min?: string | undefined;
173
+ max?: string | undefined;
174
174
  } | undefined;
175
175
  oauth?: {
176
176
  scope: string[];
@@ -226,8 +226,8 @@ export declare const AppManifestJSONSchema: z.ZodObject<{
226
226
  desc?: string | undefined;
227
227
  base_url?: string | undefined;
228
228
  ones_version?: {
229
- min: string;
230
- max: string;
229
+ min?: string | undefined;
230
+ max?: string | undefined;
231
231
  } | undefined;
232
232
  oauth?: {
233
233
  scope: string[];
@@ -267,8 +267,8 @@ export declare const AppManifestJSONSchema: z.ZodObject<{
267
267
  desc?: string | undefined;
268
268
  base_url?: string | undefined;
269
269
  ones_version?: {
270
- min: string;
271
- max: string;
270
+ min?: string | undefined;
271
+ max?: string | undefined;
272
272
  } | undefined;
273
273
  oauth?: {
274
274
  scope: string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-ones-app",
3
- "version": "0.0.15",
3
+ "version": "0.0.17",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -59,8 +59,8 @@
59
59
  "@ones-design/locale": "^1.18.0",
60
60
  "@ones-design/table": "^1.7.2",
61
61
  "@ones-design/theme": "^0.5.1",
62
- "@ones-open/node-sdk": "0.0.15",
63
- "@ones-open/web-sdk": "0.0.15",
62
+ "@ones-open/node-sdk": "0.0.17",
63
+ "@ones-open/web-sdk": "0.0.17",
64
64
  "@types/express": "5.0.6",
65
65
  "@types/fs-extra": "^11.0.4",
66
66
  "@types/lodash-es": "^4.17.12",
@@ -80,5 +80,5 @@
80
80
  "uuid": "^13.0.0",
81
81
  "zod": "^3.22.2"
82
82
  },
83
- "gitHead": "f4ef0edb32bd6daca6f0175c726342b1d7c527d6"
83
+ "gitHead": "05da48f013b94c94f94ce855d61da1ad8b2f22f8"
84
84
  }
@@ -31,7 +31,7 @@
31
31
  "lodash-es": "^4.17.23",
32
32
  "react": "~17.0.2",
33
33
  "react-dom": "~17.0.2",
34
- "reflect-metadata": "^0.2.2",
34
+ "reflect-metadata": "0.2.2",
35
35
  "rxjs": "^7.8.1",
36
36
  "vite-plugin-css-injected-by-js": "^3.5.2"
37
37
  },