@stackone/core 1.65.1 → 1.66.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/dist/index.d.mts CHANGED
@@ -411,10 +411,12 @@ type OperationType = 'list' | 'get' | 'create' | 'update' | 'delete' | 'custom'
411
411
  type InputLocation = 'body' | 'query' | 'path' | 'headers';
412
412
  type Input = {
413
413
  name: string;
414
- type: string;
414
+ type: 'string' | 'number' | 'boolean' | 'datetime_string' | 'object';
415
415
  required: boolean;
416
416
  description: string;
417
417
  in: InputLocation;
418
+ array?: boolean;
419
+ properties?: Omit<Input, 'in'>[];
418
420
  };
419
421
  type Operation = {
420
422
  id: string;
package/dist/index.d.ts CHANGED
@@ -411,10 +411,12 @@ type OperationType = 'list' | 'get' | 'create' | 'update' | 'delete' | 'custom'
411
411
  type InputLocation = 'body' | 'query' | 'path' | 'headers';
412
412
  type Input = {
413
413
  name: string;
414
- type: string;
414
+ type: 'string' | 'number' | 'boolean' | 'datetime_string' | 'object';
415
415
  required: boolean;
416
416
  description: string;
417
417
  in: InputLocation;
418
+ array?: boolean;
419
+ properties?: Omit<Input, 'in'>[];
418
420
  };
419
421
  type Operation = {
420
422
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stackone/core",
3
- "version": "1.65.1",
3
+ "version": "1.66.0",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",