@seamapi/types 1.683.0 → 1.684.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 +186 -35
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +387 -80
- package/dist/index.cjs +186 -35
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-access-group.d.ts +78 -12
- package/lib/seam/connect/models/acs/acs-access-group.js +9 -1
- package/lib/seam/connect/models/acs/acs-access-group.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +78 -20
- package/lib/seam/connect/openapi.d.ts +179 -34
- package/lib/seam/connect/openapi.js +179 -32
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +76 -14
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-access-group.ts +12 -3
- package/src/lib/seam/connect/openapi.ts +194 -34
- package/src/lib/seam/connect/route-types.ts +139 -56
package/dist/index.cjs
CHANGED
|
@@ -2526,11 +2526,15 @@ var unknown_issue_with_acs_access_group = common_acs_access_group_warning.extend
|
|
|
2526
2526
|
}).describe(
|
|
2527
2527
|
"An unknown issue occurred while syncing the state of this access group with the provider. This issue may affect the proper functioning of this access group."
|
|
2528
2528
|
);
|
|
2529
|
-
var
|
|
2530
|
-
|
|
2529
|
+
var acs_access_group_being_deleted = common_acs_access_group_warning.extend({
|
|
2530
|
+
warning_code: zod.z.literal("being_deleted").describe(warning_code_description6)
|
|
2531
|
+
}).describe(
|
|
2532
|
+
"Indicates that the access group is being deleted from the access system. This is a temporary state, and the access group will be deleted shortly."
|
|
2531
2533
|
);
|
|
2534
|
+
var acs_access_group_warning = zod.z.union([unknown_issue_with_acs_access_group, acs_access_group_being_deleted]).describe("Warning associated with the `acs_access_group`.");
|
|
2532
2535
|
zod.z.object({
|
|
2533
|
-
unknown_issue_with_acs_access_group: unknown_issue_with_acs_access_group.optional().nullable()
|
|
2536
|
+
unknown_issue_with_acs_access_group: unknown_issue_with_acs_access_group.optional().nullable(),
|
|
2537
|
+
being_deleted: acs_access_group_being_deleted.optional().nullable()
|
|
2534
2538
|
});
|
|
2535
2539
|
var common_acs_access_group = zod.z.object({
|
|
2536
2540
|
acs_access_group_id: zod.z.string().uuid().describe("ID of the access group."),
|
|
@@ -7837,24 +7841,50 @@ var openapi_default = {
|
|
|
7837
7841
|
description: "Warnings associated with the `acs_access_group`.",
|
|
7838
7842
|
items: {
|
|
7839
7843
|
description: "Warning associated with the `acs_access_group`.",
|
|
7840
|
-
|
|
7841
|
-
|
|
7842
|
-
description: "
|
|
7843
|
-
|
|
7844
|
-
|
|
7845
|
-
|
|
7846
|
-
|
|
7847
|
-
|
|
7848
|
-
|
|
7844
|
+
oneOf: [
|
|
7845
|
+
{
|
|
7846
|
+
description: "An unknown issue occurred while syncing the state of this access group with the provider. This issue may affect the proper functioning of this access group.",
|
|
7847
|
+
properties: {
|
|
7848
|
+
created_at: {
|
|
7849
|
+
description: "Date and time at which Seam created the warning.",
|
|
7850
|
+
format: "date-time",
|
|
7851
|
+
type: "string"
|
|
7852
|
+
},
|
|
7853
|
+
message: {
|
|
7854
|
+
description: "Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.",
|
|
7855
|
+
type: "string"
|
|
7856
|
+
},
|
|
7857
|
+
warning_code: {
|
|
7858
|
+
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
7859
|
+
enum: ["unknown_issue_with_acs_access_group"],
|
|
7860
|
+
type: "string"
|
|
7861
|
+
}
|
|
7862
|
+
},
|
|
7863
|
+
required: ["created_at", "message", "warning_code"],
|
|
7864
|
+
type: "object"
|
|
7849
7865
|
},
|
|
7850
|
-
|
|
7851
|
-
description: "
|
|
7852
|
-
|
|
7853
|
-
|
|
7866
|
+
{
|
|
7867
|
+
description: "Indicates that the access group is being deleted from the access system. This is a temporary state, and the access group will be deleted shortly.",
|
|
7868
|
+
properties: {
|
|
7869
|
+
created_at: {
|
|
7870
|
+
description: "Date and time at which Seam created the warning.",
|
|
7871
|
+
format: "date-time",
|
|
7872
|
+
type: "string"
|
|
7873
|
+
},
|
|
7874
|
+
message: {
|
|
7875
|
+
description: "Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.",
|
|
7876
|
+
type: "string"
|
|
7877
|
+
},
|
|
7878
|
+
warning_code: {
|
|
7879
|
+
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
7880
|
+
enum: ["being_deleted"],
|
|
7881
|
+
type: "string"
|
|
7882
|
+
}
|
|
7883
|
+
},
|
|
7884
|
+
required: ["created_at", "message", "warning_code"],
|
|
7885
|
+
type: "object"
|
|
7854
7886
|
}
|
|
7855
|
-
|
|
7856
|
-
required: ["created_at", "message", "warning_code"],
|
|
7857
|
-
type: "object"
|
|
7887
|
+
]
|
|
7858
7888
|
},
|
|
7859
7889
|
type: "array"
|
|
7860
7890
|
},
|
|
@@ -26909,24 +26939,50 @@ var openapi_default = {
|
|
|
26909
26939
|
description: "Warnings associated with the `acs_access_group`.",
|
|
26910
26940
|
items: {
|
|
26911
26941
|
description: "Warning associated with the `acs_access_group`.",
|
|
26912
|
-
|
|
26913
|
-
|
|
26914
|
-
description: "
|
|
26915
|
-
|
|
26916
|
-
|
|
26917
|
-
|
|
26918
|
-
|
|
26919
|
-
|
|
26920
|
-
|
|
26942
|
+
oneOf: [
|
|
26943
|
+
{
|
|
26944
|
+
description: "An unknown issue occurred while syncing the state of this access group with the provider. This issue may affect the proper functioning of this access group.",
|
|
26945
|
+
properties: {
|
|
26946
|
+
created_at: {
|
|
26947
|
+
description: "Date and time at which Seam created the warning.",
|
|
26948
|
+
format: "date-time",
|
|
26949
|
+
type: "string"
|
|
26950
|
+
},
|
|
26951
|
+
message: {
|
|
26952
|
+
description: "Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.",
|
|
26953
|
+
type: "string"
|
|
26954
|
+
},
|
|
26955
|
+
warning_code: {
|
|
26956
|
+
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
26957
|
+
enum: ["unknown_issue_with_acs_access_group"],
|
|
26958
|
+
type: "string"
|
|
26959
|
+
}
|
|
26960
|
+
},
|
|
26961
|
+
required: ["created_at", "message", "warning_code"],
|
|
26962
|
+
type: "object"
|
|
26921
26963
|
},
|
|
26922
|
-
|
|
26923
|
-
description: "
|
|
26924
|
-
|
|
26925
|
-
|
|
26964
|
+
{
|
|
26965
|
+
description: "Indicates that the access group is being deleted from the access system. This is a temporary state, and the access group will be deleted shortly.",
|
|
26966
|
+
properties: {
|
|
26967
|
+
created_at: {
|
|
26968
|
+
description: "Date and time at which Seam created the warning.",
|
|
26969
|
+
format: "date-time",
|
|
26970
|
+
type: "string"
|
|
26971
|
+
},
|
|
26972
|
+
message: {
|
|
26973
|
+
description: "Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.",
|
|
26974
|
+
type: "string"
|
|
26975
|
+
},
|
|
26976
|
+
warning_code: {
|
|
26977
|
+
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
26978
|
+
enum: ["being_deleted"],
|
|
26979
|
+
type: "string"
|
|
26980
|
+
}
|
|
26981
|
+
},
|
|
26982
|
+
required: ["created_at", "message", "warning_code"],
|
|
26983
|
+
type: "object"
|
|
26926
26984
|
}
|
|
26927
|
-
|
|
26928
|
-
required: ["created_at", "message", "warning_code"],
|
|
26929
|
-
type: "object"
|
|
26985
|
+
]
|
|
26930
26986
|
},
|
|
26931
26987
|
type: "array"
|
|
26932
26988
|
},
|
|
@@ -35474,6 +35530,101 @@ var openapi_default = {
|
|
|
35474
35530
|
"x-title": "Add an ACS User to an Access Group"
|
|
35475
35531
|
}
|
|
35476
35532
|
},
|
|
35533
|
+
"/acs/access_groups/delete": {
|
|
35534
|
+
delete: {
|
|
35535
|
+
description: "Deletes a specified [access group](https://docs.seam.co/latest/capability-guides/access-systems/assigning-users-to-access-groups).",
|
|
35536
|
+
operationId: "acsAccessGroupsDeleteDelete",
|
|
35537
|
+
parameters: [
|
|
35538
|
+
{
|
|
35539
|
+
in: "query",
|
|
35540
|
+
name: "acs_access_group_id",
|
|
35541
|
+
required: true,
|
|
35542
|
+
schema: {
|
|
35543
|
+
description: "ID of the access group that you want to delete.",
|
|
35544
|
+
format: "uuid",
|
|
35545
|
+
type: "string"
|
|
35546
|
+
}
|
|
35547
|
+
}
|
|
35548
|
+
],
|
|
35549
|
+
responses: {
|
|
35550
|
+
200: {
|
|
35551
|
+
content: {
|
|
35552
|
+
"application/json": {
|
|
35553
|
+
schema: {
|
|
35554
|
+
properties: { ok: { type: "boolean" } },
|
|
35555
|
+
required: ["ok"],
|
|
35556
|
+
type: "object"
|
|
35557
|
+
}
|
|
35558
|
+
}
|
|
35559
|
+
},
|
|
35560
|
+
description: "OK"
|
|
35561
|
+
},
|
|
35562
|
+
400: { description: "Bad Request" },
|
|
35563
|
+
401: { description: "Unauthorized" }
|
|
35564
|
+
},
|
|
35565
|
+
security: [
|
|
35566
|
+
{ client_session: [] },
|
|
35567
|
+
{ pat_with_workspace: [] },
|
|
35568
|
+
{ console_session_with_workspace: [] },
|
|
35569
|
+
{ api_key: [] }
|
|
35570
|
+
],
|
|
35571
|
+
summary: "/acs/access_groups/delete",
|
|
35572
|
+
tags: ["/acs"],
|
|
35573
|
+
"x-fern-sdk-group-name": ["acs", "access_groups"],
|
|
35574
|
+
"x-fern-sdk-method-name": "delete",
|
|
35575
|
+
"x-response-key": null,
|
|
35576
|
+
"x-title": "Delete an Access Group"
|
|
35577
|
+
},
|
|
35578
|
+
post: {
|
|
35579
|
+
description: "Deletes a specified [access group](https://docs.seam.co/latest/capability-guides/access-systems/assigning-users-to-access-groups).",
|
|
35580
|
+
operationId: "acsAccessGroupsDeletePost",
|
|
35581
|
+
requestBody: {
|
|
35582
|
+
content: {
|
|
35583
|
+
"application/json": {
|
|
35584
|
+
schema: {
|
|
35585
|
+
properties: {
|
|
35586
|
+
acs_access_group_id: {
|
|
35587
|
+
description: "ID of the access group that you want to delete.",
|
|
35588
|
+
format: "uuid",
|
|
35589
|
+
type: "string"
|
|
35590
|
+
}
|
|
35591
|
+
},
|
|
35592
|
+
required: ["acs_access_group_id"],
|
|
35593
|
+
type: "object"
|
|
35594
|
+
}
|
|
35595
|
+
}
|
|
35596
|
+
}
|
|
35597
|
+
},
|
|
35598
|
+
responses: {
|
|
35599
|
+
200: {
|
|
35600
|
+
content: {
|
|
35601
|
+
"application/json": {
|
|
35602
|
+
schema: {
|
|
35603
|
+
properties: { ok: { type: "boolean" } },
|
|
35604
|
+
required: ["ok"],
|
|
35605
|
+
type: "object"
|
|
35606
|
+
}
|
|
35607
|
+
}
|
|
35608
|
+
},
|
|
35609
|
+
description: "OK"
|
|
35610
|
+
},
|
|
35611
|
+
400: { description: "Bad Request" },
|
|
35612
|
+
401: { description: "Unauthorized" }
|
|
35613
|
+
},
|
|
35614
|
+
security: [
|
|
35615
|
+
{ client_session: [] },
|
|
35616
|
+
{ pat_with_workspace: [] },
|
|
35617
|
+
{ console_session_with_workspace: [] },
|
|
35618
|
+
{ api_key: [] }
|
|
35619
|
+
],
|
|
35620
|
+
summary: "/acs/access_groups/delete",
|
|
35621
|
+
tags: ["/acs"],
|
|
35622
|
+
"x-fern-sdk-group-name": ["acs", "access_groups"],
|
|
35623
|
+
"x-fern-sdk-method-name": "delete",
|
|
35624
|
+
"x-response-key": null,
|
|
35625
|
+
"x-title": "Delete an Access Group"
|
|
35626
|
+
}
|
|
35627
|
+
},
|
|
35477
35628
|
"/acs/access_groups/get": {
|
|
35478
35629
|
get: {
|
|
35479
35630
|
description: "Returns a specified [access group](https://docs.seam.co/latest/capability-guides/access-systems/assigning-users-to-access-groups).",
|