@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 +3 -1
- package/dist/index.d.ts +3 -1
- package/package.json +1 -1
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;
|