@seamapi/types 1.489.0 → 1.491.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 +41 -8
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +153 -5
- package/dist/index.cjs +41 -8
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +76 -0
- package/lib/seam/connect/models/customization_profiles/customization_profile.d.ts +2 -2
- package/lib/seam/connect/models/instant-keys/instant-key.d.ts +26 -0
- package/lib/seam/connect/models/instant-keys/instant-key.js +23 -0
- package/lib/seam/connect/models/instant-keys/instant-key.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +29 -1
- package/lib/seam/connect/openapi.js +32 -7
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +58 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/models/instant-keys/instant-key.ts +25 -0
- package/src/lib/seam/connect/openapi.ts +35 -7
- package/src/lib/seam/connect/route-types.ts +68 -2
|
@@ -37573,6 +37573,20 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
37573
37573
|
client_session_id: z.ZodString;
|
|
37574
37574
|
user_identity_id: z.ZodString;
|
|
37575
37575
|
expires_at: z.ZodString;
|
|
37576
|
+
customization_profile_id: z.ZodOptional<z.ZodString>;
|
|
37577
|
+
customization_profile: z.ZodOptional<z.ZodObject<{
|
|
37578
|
+
primary_color: z.ZodOptional<z.ZodString>;
|
|
37579
|
+
secondary_color: z.ZodOptional<z.ZodString>;
|
|
37580
|
+
logo_url: z.ZodOptional<z.ZodString>;
|
|
37581
|
+
}, "strip", z.ZodTypeAny, {
|
|
37582
|
+
primary_color?: string | undefined;
|
|
37583
|
+
secondary_color?: string | undefined;
|
|
37584
|
+
logo_url?: string | undefined;
|
|
37585
|
+
}, {
|
|
37586
|
+
primary_color?: string | undefined;
|
|
37587
|
+
secondary_color?: string | undefined;
|
|
37588
|
+
logo_url?: string | undefined;
|
|
37589
|
+
}>>;
|
|
37576
37590
|
}, "strip", z.ZodTypeAny, {
|
|
37577
37591
|
workspace_id: string;
|
|
37578
37592
|
created_at: string;
|
|
@@ -37581,6 +37595,12 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
37581
37595
|
client_session_id: string;
|
|
37582
37596
|
expires_at: string;
|
|
37583
37597
|
instant_key_id: string;
|
|
37598
|
+
customization_profile_id?: string | undefined;
|
|
37599
|
+
customization_profile?: {
|
|
37600
|
+
primary_color?: string | undefined;
|
|
37601
|
+
secondary_color?: string | undefined;
|
|
37602
|
+
logo_url?: string | undefined;
|
|
37603
|
+
} | undefined;
|
|
37584
37604
|
}, {
|
|
37585
37605
|
workspace_id: string;
|
|
37586
37606
|
created_at: string;
|
|
@@ -37589,6 +37609,12 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
37589
37609
|
client_session_id: string;
|
|
37590
37610
|
expires_at: string;
|
|
37591
37611
|
instant_key_id: string;
|
|
37612
|
+
customization_profile_id?: string | undefined;
|
|
37613
|
+
customization_profile?: {
|
|
37614
|
+
primary_color?: string | undefined;
|
|
37615
|
+
secondary_color?: string | undefined;
|
|
37616
|
+
logo_url?: string | undefined;
|
|
37617
|
+
} | undefined;
|
|
37592
37618
|
}>, "many">>;
|
|
37593
37619
|
}, "strip", z.ZodTypeAny, {
|
|
37594
37620
|
batch_type: "workspaces";
|
|
@@ -40866,6 +40892,12 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
40866
40892
|
client_session_id: string;
|
|
40867
40893
|
expires_at: string;
|
|
40868
40894
|
instant_key_id: string;
|
|
40895
|
+
customization_profile_id?: string | undefined;
|
|
40896
|
+
customization_profile?: {
|
|
40897
|
+
primary_color?: string | undefined;
|
|
40898
|
+
secondary_color?: string | undefined;
|
|
40899
|
+
logo_url?: string | undefined;
|
|
40900
|
+
} | undefined;
|
|
40869
40901
|
}[] | undefined;
|
|
40870
40902
|
}, {
|
|
40871
40903
|
batch_type: "workspaces";
|
|
@@ -44143,6 +44175,12 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
44143
44175
|
client_session_id: string;
|
|
44144
44176
|
expires_at: string;
|
|
44145
44177
|
instant_key_id: string;
|
|
44178
|
+
customization_profile_id?: string | undefined;
|
|
44179
|
+
customization_profile?: {
|
|
44180
|
+
primary_color?: string | undefined;
|
|
44181
|
+
secondary_color?: string | undefined;
|
|
44182
|
+
logo_url?: string | undefined;
|
|
44183
|
+
} | undefined;
|
|
44146
44184
|
}[] | undefined;
|
|
44147
44185
|
}>;
|
|
44148
44186
|
export declare const batch: z.ZodObject<{
|
|
@@ -61457,6 +61495,20 @@ export declare const batch: z.ZodObject<{
|
|
|
61457
61495
|
client_session_id: z.ZodString;
|
|
61458
61496
|
user_identity_id: z.ZodString;
|
|
61459
61497
|
expires_at: z.ZodString;
|
|
61498
|
+
customization_profile_id: z.ZodOptional<z.ZodString>;
|
|
61499
|
+
customization_profile: z.ZodOptional<z.ZodObject<{
|
|
61500
|
+
primary_color: z.ZodOptional<z.ZodString>;
|
|
61501
|
+
secondary_color: z.ZodOptional<z.ZodString>;
|
|
61502
|
+
logo_url: z.ZodOptional<z.ZodString>;
|
|
61503
|
+
}, "strip", z.ZodTypeAny, {
|
|
61504
|
+
primary_color?: string | undefined;
|
|
61505
|
+
secondary_color?: string | undefined;
|
|
61506
|
+
logo_url?: string | undefined;
|
|
61507
|
+
}, {
|
|
61508
|
+
primary_color?: string | undefined;
|
|
61509
|
+
secondary_color?: string | undefined;
|
|
61510
|
+
logo_url?: string | undefined;
|
|
61511
|
+
}>>;
|
|
61460
61512
|
}, "strip", z.ZodTypeAny, {
|
|
61461
61513
|
workspace_id: string;
|
|
61462
61514
|
created_at: string;
|
|
@@ -61465,6 +61517,12 @@ export declare const batch: z.ZodObject<{
|
|
|
61465
61517
|
client_session_id: string;
|
|
61466
61518
|
expires_at: string;
|
|
61467
61519
|
instant_key_id: string;
|
|
61520
|
+
customization_profile_id?: string | undefined;
|
|
61521
|
+
customization_profile?: {
|
|
61522
|
+
primary_color?: string | undefined;
|
|
61523
|
+
secondary_color?: string | undefined;
|
|
61524
|
+
logo_url?: string | undefined;
|
|
61525
|
+
} | undefined;
|
|
61468
61526
|
}, {
|
|
61469
61527
|
workspace_id: string;
|
|
61470
61528
|
created_at: string;
|
|
@@ -61473,6 +61531,12 @@ export declare const batch: z.ZodObject<{
|
|
|
61473
61531
|
client_session_id: string;
|
|
61474
61532
|
expires_at: string;
|
|
61475
61533
|
instant_key_id: string;
|
|
61534
|
+
customization_profile_id?: string | undefined;
|
|
61535
|
+
customization_profile?: {
|
|
61536
|
+
primary_color?: string | undefined;
|
|
61537
|
+
secondary_color?: string | undefined;
|
|
61538
|
+
logo_url?: string | undefined;
|
|
61539
|
+
} | undefined;
|
|
61476
61540
|
}>, "many">>;
|
|
61477
61541
|
}, "strip", z.ZodTypeAny, {
|
|
61478
61542
|
batch_type: "spaces" | "access_grants" | "access_methods" | "workspaces";
|
|
@@ -64679,6 +64743,12 @@ export declare const batch: z.ZodObject<{
|
|
|
64679
64743
|
client_session_id: string;
|
|
64680
64744
|
expires_at: string;
|
|
64681
64745
|
instant_key_id: string;
|
|
64746
|
+
customization_profile_id?: string | undefined;
|
|
64747
|
+
customization_profile?: {
|
|
64748
|
+
primary_color?: string | undefined;
|
|
64749
|
+
secondary_color?: string | undefined;
|
|
64750
|
+
logo_url?: string | undefined;
|
|
64751
|
+
} | undefined;
|
|
64682
64752
|
}[] | undefined;
|
|
64683
64753
|
}, {
|
|
64684
64754
|
batch_type: "spaces" | "access_grants" | "access_methods" | "workspaces";
|
|
@@ -67885,6 +67955,12 @@ export declare const batch: z.ZodObject<{
|
|
|
67885
67955
|
client_session_id: string;
|
|
67886
67956
|
expires_at: string;
|
|
67887
67957
|
instant_key_id: string;
|
|
67958
|
+
customization_profile_id?: string | undefined;
|
|
67959
|
+
customization_profile?: {
|
|
67960
|
+
primary_color?: string | undefined;
|
|
67961
|
+
secondary_color?: string | undefined;
|
|
67962
|
+
logo_url?: string | undefined;
|
|
67963
|
+
} | undefined;
|
|
67888
67964
|
}[] | undefined;
|
|
67889
67965
|
}>;
|
|
67890
67966
|
export type WorkspacesBatch = z.infer<typeof workspaces_batch>;
|
|
@@ -12,16 +12,16 @@ export declare const customization_profile: z.ZodObject<{
|
|
|
12
12
|
workspace_id: string;
|
|
13
13
|
created_at: string;
|
|
14
14
|
customization_profile_id: string;
|
|
15
|
-
logo_url?: string | undefined;
|
|
16
15
|
primary_color?: string | undefined;
|
|
17
16
|
secondary_color?: string | undefined;
|
|
17
|
+
logo_url?: string | undefined;
|
|
18
18
|
}, {
|
|
19
19
|
name: string | null;
|
|
20
20
|
workspace_id: string;
|
|
21
21
|
created_at: string;
|
|
22
22
|
customization_profile_id: string;
|
|
23
|
-
logo_url?: string | undefined;
|
|
24
23
|
primary_color?: string | undefined;
|
|
25
24
|
secondary_color?: string | undefined;
|
|
25
|
+
logo_url?: string | undefined;
|
|
26
26
|
}>;
|
|
27
27
|
export type CustomizationProfile = z.infer<typeof customization_profile>;
|
|
@@ -7,6 +7,20 @@ export declare const instant_key: z.ZodObject<{
|
|
|
7
7
|
client_session_id: z.ZodString;
|
|
8
8
|
user_identity_id: z.ZodString;
|
|
9
9
|
expires_at: z.ZodString;
|
|
10
|
+
customization_profile_id: z.ZodOptional<z.ZodString>;
|
|
11
|
+
customization_profile: z.ZodOptional<z.ZodObject<{
|
|
12
|
+
primary_color: z.ZodOptional<z.ZodString>;
|
|
13
|
+
secondary_color: z.ZodOptional<z.ZodString>;
|
|
14
|
+
logo_url: z.ZodOptional<z.ZodString>;
|
|
15
|
+
}, "strip", z.ZodTypeAny, {
|
|
16
|
+
primary_color?: string | undefined;
|
|
17
|
+
secondary_color?: string | undefined;
|
|
18
|
+
logo_url?: string | undefined;
|
|
19
|
+
}, {
|
|
20
|
+
primary_color?: string | undefined;
|
|
21
|
+
secondary_color?: string | undefined;
|
|
22
|
+
logo_url?: string | undefined;
|
|
23
|
+
}>>;
|
|
10
24
|
}, "strip", z.ZodTypeAny, {
|
|
11
25
|
workspace_id: string;
|
|
12
26
|
created_at: string;
|
|
@@ -15,6 +29,12 @@ export declare const instant_key: z.ZodObject<{
|
|
|
15
29
|
client_session_id: string;
|
|
16
30
|
expires_at: string;
|
|
17
31
|
instant_key_id: string;
|
|
32
|
+
customization_profile_id?: string | undefined;
|
|
33
|
+
customization_profile?: {
|
|
34
|
+
primary_color?: string | undefined;
|
|
35
|
+
secondary_color?: string | undefined;
|
|
36
|
+
logo_url?: string | undefined;
|
|
37
|
+
} | undefined;
|
|
18
38
|
}, {
|
|
19
39
|
workspace_id: string;
|
|
20
40
|
created_at: string;
|
|
@@ -23,5 +43,11 @@ export declare const instant_key: z.ZodObject<{
|
|
|
23
43
|
client_session_id: string;
|
|
24
44
|
expires_at: string;
|
|
25
45
|
instant_key_id: string;
|
|
46
|
+
customization_profile_id?: string | undefined;
|
|
47
|
+
customization_profile?: {
|
|
48
|
+
primary_color?: string | undefined;
|
|
49
|
+
secondary_color?: string | undefined;
|
|
50
|
+
logo_url?: string | undefined;
|
|
51
|
+
} | undefined;
|
|
26
52
|
}>;
|
|
27
53
|
export type InstantKey = z.infer<typeof instant_key>;
|
|
@@ -25,6 +25,29 @@ export const instant_key = z.object({
|
|
|
25
25
|
.string()
|
|
26
26
|
.datetime()
|
|
27
27
|
.describe('Date and time at which the Instant Key expires.'),
|
|
28
|
+
customization_profile_id: z
|
|
29
|
+
.string()
|
|
30
|
+
.uuid()
|
|
31
|
+
.optional()
|
|
32
|
+
.describe('ID of the customization profile associated with the Instant Key.'),
|
|
33
|
+
customization_profile: z
|
|
34
|
+
.object({
|
|
35
|
+
primary_color: z
|
|
36
|
+
.string()
|
|
37
|
+
.optional()
|
|
38
|
+
.describe('Primary color of the customization profile.'),
|
|
39
|
+
secondary_color: z
|
|
40
|
+
.string()
|
|
41
|
+
.optional()
|
|
42
|
+
.describe('Secondary color of the customization profile.'),
|
|
43
|
+
logo_url: z
|
|
44
|
+
.string()
|
|
45
|
+
.url()
|
|
46
|
+
.optional()
|
|
47
|
+
.describe('URL of the logo associated with the customization profile.'),
|
|
48
|
+
})
|
|
49
|
+
.optional()
|
|
50
|
+
.describe('Customization profile associated with the Instant Key.'),
|
|
28
51
|
}).describe(`
|
|
29
52
|
---
|
|
30
53
|
route_path: /instant_keys
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"instant-key.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/instant-keys/instant-key.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,WAAW,GAAG,CAAC,CAAC,MAAM,CAAC;IAClC,cAAc,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,CAAC,wBAAwB,CAAC;IACpE,YAAY,EAAE,CAAC;SACZ,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CACP,4GAA4G,CAC7G;IACH,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,qDAAqD,CAAC;IAClE,eAAe,EAAE,CAAC;SACf,MAAM,EAAE;SACR,GAAG,EAAE;SACL,QAAQ,CACP,sKAAsK,CACvK;IACH,iBAAiB,EAAE,CAAC;SACjB,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CACP,6IAA6I,CAC9I;IACH,gBAAgB,EAAE,CAAC;SAChB,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CAAC,0DAA0D,CAAC;IACvE,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,iDAAiD,CAAC;
|
|
1
|
+
{"version":3,"file":"instant-key.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/instant-keys/instant-key.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,WAAW,GAAG,CAAC,CAAC,MAAM,CAAC;IAClC,cAAc,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,CAAC,wBAAwB,CAAC;IACpE,YAAY,EAAE,CAAC;SACZ,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CACP,4GAA4G,CAC7G;IACH,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,qDAAqD,CAAC;IAClE,eAAe,EAAE,CAAC;SACf,MAAM,EAAE;SACR,GAAG,EAAE;SACL,QAAQ,CACP,sKAAsK,CACvK;IACH,iBAAiB,EAAE,CAAC;SACjB,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CACP,6IAA6I,CAC9I;IACH,gBAAgB,EAAE,CAAC;SAChB,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CAAC,0DAA0D,CAAC;IACvE,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,iDAAiD,CAAC;IAC9D,wBAAwB,EAAE,CAAC;SACxB,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,EAAE;SACV,QAAQ,CACP,kEAAkE,CACnE;IACH,qBAAqB,EAAE,CAAC;SACrB,MAAM,CAAC;QACN,aAAa,EAAE,CAAC;aACb,MAAM,EAAE;aACR,QAAQ,EAAE;aACV,QAAQ,CAAC,6CAA6C,CAAC;QAC1D,eAAe,EAAE,CAAC;aACf,MAAM,EAAE;aACR,QAAQ,EAAE;aACV,QAAQ,CAAC,+CAA+C,CAAC;QAC5D,QAAQ,EAAE,CAAC;aACR,MAAM,EAAE;aACR,GAAG,EAAE;aACL,QAAQ,EAAE;aACV,QAAQ,CAAC,4DAA4D,CAAC;KAC1E,CAAC;SACD,QAAQ,EAAE;SACV,QAAQ,CAAC,wDAAwD,CAAC;CACtE,CAAC,CAAC,QAAQ,CAAC;;;;;;;CAOX,CAAC,CAAA"}
|
|
@@ -10352,6 +10352,30 @@ declare const _default: {
|
|
|
10352
10352
|
format: string;
|
|
10353
10353
|
type: string;
|
|
10354
10354
|
};
|
|
10355
|
+
customization_profile: {
|
|
10356
|
+
description: string;
|
|
10357
|
+
properties: {
|
|
10358
|
+
logo_url: {
|
|
10359
|
+
description: string;
|
|
10360
|
+
format: string;
|
|
10361
|
+
type: string;
|
|
10362
|
+
};
|
|
10363
|
+
primary_color: {
|
|
10364
|
+
description: string;
|
|
10365
|
+
type: string;
|
|
10366
|
+
};
|
|
10367
|
+
secondary_color: {
|
|
10368
|
+
description: string;
|
|
10369
|
+
type: string;
|
|
10370
|
+
};
|
|
10371
|
+
};
|
|
10372
|
+
type: string;
|
|
10373
|
+
};
|
|
10374
|
+
customization_profile_id: {
|
|
10375
|
+
description: string;
|
|
10376
|
+
format: string;
|
|
10377
|
+
type: string;
|
|
10378
|
+
};
|
|
10355
10379
|
expires_at: {
|
|
10356
10380
|
description: string;
|
|
10357
10381
|
format: string;
|
|
@@ -45734,6 +45758,10 @@ declare const _default: {
|
|
|
45734
45758
|
'application/json': {
|
|
45735
45759
|
schema: {
|
|
45736
45760
|
properties: {
|
|
45761
|
+
customization_profile_id: {
|
|
45762
|
+
format: string;
|
|
45763
|
+
type: string;
|
|
45764
|
+
};
|
|
45737
45765
|
max_use_count: {
|
|
45738
45766
|
default: number;
|
|
45739
45767
|
description: string;
|
|
@@ -48574,7 +48602,7 @@ declare const _default: {
|
|
|
48574
48602
|
'x-undocumented': string;
|
|
48575
48603
|
};
|
|
48576
48604
|
};
|
|
48577
|
-
'/workspaces/
|
|
48605
|
+
'/workspaces/find_anything': {
|
|
48578
48606
|
get: {
|
|
48579
48607
|
description: string;
|
|
48580
48608
|
operationId: string;
|
|
@@ -17142,6 +17142,30 @@ export default {
|
|
|
17142
17142
|
format: 'date-time',
|
|
17143
17143
|
type: 'string',
|
|
17144
17144
|
},
|
|
17145
|
+
customization_profile: {
|
|
17146
|
+
description: 'Customization profile associated with the Instant Key.',
|
|
17147
|
+
properties: {
|
|
17148
|
+
logo_url: {
|
|
17149
|
+
description: 'URL of the logo associated with the customization profile.',
|
|
17150
|
+
format: 'uri',
|
|
17151
|
+
type: 'string',
|
|
17152
|
+
},
|
|
17153
|
+
primary_color: {
|
|
17154
|
+
description: 'Primary color of the customization profile.',
|
|
17155
|
+
type: 'string',
|
|
17156
|
+
},
|
|
17157
|
+
secondary_color: {
|
|
17158
|
+
description: 'Secondary color of the customization profile.',
|
|
17159
|
+
type: 'string',
|
|
17160
|
+
},
|
|
17161
|
+
},
|
|
17162
|
+
type: 'object',
|
|
17163
|
+
},
|
|
17164
|
+
customization_profile_id: {
|
|
17165
|
+
description: 'ID of the customization profile associated with the Instant Key.',
|
|
17166
|
+
format: 'uuid',
|
|
17167
|
+
type: 'string',
|
|
17168
|
+
},
|
|
17145
17169
|
expires_at: {
|
|
17146
17170
|
description: 'Date and time at which the Instant Key expires.',
|
|
17147
17171
|
format: 'date-time',
|
|
@@ -50248,6 +50272,7 @@ export default {
|
|
|
50248
50272
|
'application/json': {
|
|
50249
50273
|
schema: {
|
|
50250
50274
|
properties: {
|
|
50275
|
+
customization_profile_id: { format: 'uuid', type: 'string' },
|
|
50251
50276
|
max_use_count: {
|
|
50252
50277
|
default: 1,
|
|
50253
50278
|
description: 'Maximum number of times the instant key can be used. Default: 1.',
|
|
@@ -52362,10 +52387,10 @@ export default {
|
|
|
52362
52387
|
'x-undocumented': 'Internal form-data endpoint for Console and Customer Portal.',
|
|
52363
52388
|
},
|
|
52364
52389
|
},
|
|
52365
|
-
'/workspaces/
|
|
52390
|
+
'/workspaces/find_anything': {
|
|
52366
52391
|
get: {
|
|
52367
52392
|
description: 'Search for resources inside a workspace.',
|
|
52368
|
-
operationId: '
|
|
52393
|
+
operationId: 'workspacesFindAnythingGet',
|
|
52369
52394
|
parameters: [
|
|
52370
52395
|
{
|
|
52371
52396
|
in: 'query',
|
|
@@ -52515,11 +52540,11 @@ export default {
|
|
|
52515
52540
|
{ console_session_with_workspace: [] },
|
|
52516
52541
|
{ api_key: [] },
|
|
52517
52542
|
],
|
|
52518
|
-
summary: '/workspaces/
|
|
52543
|
+
summary: '/workspaces/find_anything',
|
|
52519
52544
|
tags: ['/workspaces'],
|
|
52520
52545
|
'x-batch-type': 'workspaces',
|
|
52521
52546
|
'x-fern-sdk-group-name': ['workspaces'],
|
|
52522
|
-
'x-fern-sdk-method-name': '
|
|
52547
|
+
'x-fern-sdk-method-name': 'find_anything',
|
|
52523
52548
|
'x-fern-sdk-return-value': 'batch',
|
|
52524
52549
|
'x-response-key': 'batch',
|
|
52525
52550
|
'x-title': 'Find Resources',
|
|
@@ -52527,7 +52552,7 @@ export default {
|
|
|
52527
52552
|
},
|
|
52528
52553
|
post: {
|
|
52529
52554
|
description: 'Search for resources inside a workspace.',
|
|
52530
|
-
operationId: '
|
|
52555
|
+
operationId: 'workspacesFindAnythingPost',
|
|
52531
52556
|
parameters: [
|
|
52532
52557
|
{
|
|
52533
52558
|
in: 'query',
|
|
@@ -52677,11 +52702,11 @@ export default {
|
|
|
52677
52702
|
{ console_session_with_workspace: [] },
|
|
52678
52703
|
{ api_key: [] },
|
|
52679
52704
|
],
|
|
52680
|
-
summary: '/workspaces/
|
|
52705
|
+
summary: '/workspaces/find_anything',
|
|
52681
52706
|
tags: ['/workspaces'],
|
|
52682
52707
|
'x-batch-type': 'workspaces',
|
|
52683
52708
|
'x-fern-sdk-group-name': ['workspaces'],
|
|
52684
|
-
'x-fern-sdk-method-name': '
|
|
52709
|
+
'x-fern-sdk-method-name': 'find_anything',
|
|
52685
52710
|
'x-fern-sdk-return-value': 'batch',
|
|
52686
52711
|
'x-response-key': 'batch',
|
|
52687
52712
|
'x-title': 'Find Resources',
|