@seamapi/types 1.665.0 → 1.666.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/connect.cjs +17 -5
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +23 -2
- package/dist/index.cjs +17 -5
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +19 -1
- package/lib/seam/connect/openapi.js +15 -3
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +4 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +15 -3
- package/src/lib/seam/connect/route-types.ts +4 -1
|
@@ -43873,7 +43873,7 @@ declare const _default: {
|
|
|
43873
43873
|
minLength: number;
|
|
43874
43874
|
type: string;
|
|
43875
43875
|
};
|
|
43876
|
-
|
|
43876
|
+
slug: {
|
|
43877
43877
|
description: string;
|
|
43878
43878
|
minLength: number;
|
|
43879
43879
|
type: string;
|
|
@@ -46479,6 +46479,10 @@ declare const _default: {
|
|
|
46479
46479
|
ok: {
|
|
46480
46480
|
type: string;
|
|
46481
46481
|
};
|
|
46482
|
+
slug: {
|
|
46483
|
+
nullable: boolean;
|
|
46484
|
+
type: string;
|
|
46485
|
+
};
|
|
46482
46486
|
};
|
|
46483
46487
|
required: string[];
|
|
46484
46488
|
type: string;
|
|
@@ -46527,6 +46531,10 @@ declare const _default: {
|
|
|
46527
46531
|
ok: {
|
|
46528
46532
|
type: string;
|
|
46529
46533
|
};
|
|
46534
|
+
slug: {
|
|
46535
|
+
nullable: boolean;
|
|
46536
|
+
type: string;
|
|
46537
|
+
};
|
|
46530
46538
|
};
|
|
46531
46539
|
required: string[];
|
|
46532
46540
|
type: string;
|
|
@@ -46573,6 +46581,11 @@ declare const _default: {
|
|
|
46573
46581
|
enum: string[];
|
|
46574
46582
|
type: string;
|
|
46575
46583
|
};
|
|
46584
|
+
slug: {
|
|
46585
|
+
description: string;
|
|
46586
|
+
nullable: boolean;
|
|
46587
|
+
type: string;
|
|
46588
|
+
};
|
|
46576
46589
|
};
|
|
46577
46590
|
type: string;
|
|
46578
46591
|
};
|
|
@@ -46631,6 +46644,11 @@ declare const _default: {
|
|
|
46631
46644
|
enum: string[];
|
|
46632
46645
|
type: string;
|
|
46633
46646
|
};
|
|
46647
|
+
slug: {
|
|
46648
|
+
description: string;
|
|
46649
|
+
nullable: boolean;
|
|
46650
|
+
type: string;
|
|
46651
|
+
};
|
|
46634
46652
|
};
|
|
46635
46653
|
type: string;
|
|
46636
46654
|
};
|
|
@@ -48633,7 +48633,7 @@ export default {
|
|
|
48633
48633
|
parameters: [
|
|
48634
48634
|
{
|
|
48635
48635
|
in: 'query',
|
|
48636
|
-
name: '
|
|
48636
|
+
name: 'slug',
|
|
48637
48637
|
required: true,
|
|
48638
48638
|
schema: {
|
|
48639
48639
|
description: 'Workspace slug',
|
|
@@ -48700,13 +48700,13 @@ export default {
|
|
|
48700
48700
|
minLength: 1,
|
|
48701
48701
|
type: 'string',
|
|
48702
48702
|
},
|
|
48703
|
-
|
|
48703
|
+
slug: {
|
|
48704
48704
|
description: 'Workspace slug',
|
|
48705
48705
|
minLength: 1,
|
|
48706
48706
|
type: 'string',
|
|
48707
48707
|
},
|
|
48708
48708
|
},
|
|
48709
|
-
required: ['
|
|
48709
|
+
required: ['slug'],
|
|
48710
48710
|
type: 'object',
|
|
48711
48711
|
},
|
|
48712
48712
|
},
|
|
@@ -51113,6 +51113,7 @@ export default {
|
|
|
51113
51113
|
type: 'string',
|
|
51114
51114
|
},
|
|
51115
51115
|
ok: { type: 'boolean' },
|
|
51116
|
+
slug: { nullable: true, type: 'string' },
|
|
51116
51117
|
},
|
|
51117
51118
|
required: ['ok'],
|
|
51118
51119
|
type: 'object',
|
|
@@ -51155,6 +51156,7 @@ export default {
|
|
|
51155
51156
|
type: 'string',
|
|
51156
51157
|
},
|
|
51157
51158
|
ok: { type: 'boolean' },
|
|
51159
|
+
slug: { nullable: true, type: 'string' },
|
|
51158
51160
|
},
|
|
51159
51161
|
required: ['ok'],
|
|
51160
51162
|
type: 'object',
|
|
@@ -51197,6 +51199,11 @@ export default {
|
|
|
51197
51199
|
],
|
|
51198
51200
|
type: 'string',
|
|
51199
51201
|
},
|
|
51202
|
+
slug: {
|
|
51203
|
+
description: 'Slug to set on the workspace.',
|
|
51204
|
+
nullable: true,
|
|
51205
|
+
type: 'string',
|
|
51206
|
+
},
|
|
51200
51207
|
},
|
|
51201
51208
|
type: 'object',
|
|
51202
51209
|
},
|
|
@@ -51247,6 +51254,11 @@ export default {
|
|
|
51247
51254
|
],
|
|
51248
51255
|
type: 'string',
|
|
51249
51256
|
},
|
|
51257
|
+
slug: {
|
|
51258
|
+
description: 'Slug to set on the workspace.',
|
|
51259
|
+
nullable: true,
|
|
51260
|
+
type: 'string',
|
|
51261
|
+
},
|
|
51250
51262
|
},
|
|
51251
51263
|
type: 'object',
|
|
51252
51264
|
},
|