@seamapi/types 1.762.0 → 1.764.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 CHANGED
@@ -42416,7 +42416,8 @@ var openapi_default = {
42416
42416
  security: [
42417
42417
  { pat_with_workspace: [] },
42418
42418
  { console_session_with_workspace: [] },
42419
- { api_key: [] }
42419
+ { api_key: [] },
42420
+ { client_session_with_customer: [] }
42420
42421
  ],
42421
42422
  summary: "/access_methods/unmanaged/list",
42422
42423
  tags: [],
@@ -42830,7 +42831,8 @@ var openapi_default = {
42830
42831
  security: [
42831
42832
  { pat_with_workspace: [] },
42832
42833
  { console_session_with_workspace: [] },
42833
- { api_key: [] }
42834
+ { api_key: [] },
42835
+ { client_session_with_customer: [] }
42834
42836
  ],
42835
42837
  summary: "/access_methods/unmanaged/list",
42836
42838
  tags: [],
@@ -68867,6 +68869,124 @@ var openapi_default = {
68867
68869
  "x-undocumented": "Internal endpoint for customer portals."
68868
68870
  }
68869
68871
  },
68872
+ "/seam/customer/v1/reservations/list_access_grants": {
68873
+ get: {
68874
+ description: "Lists access grants linked to a reservation by reservation_key.",
68875
+ operationId: "seamCustomerV1ReservationsListAccessGrantsGet",
68876
+ parameters: [
68877
+ {
68878
+ in: "query",
68879
+ name: "customer_key",
68880
+ required: false,
68881
+ schema: {
68882
+ description: "The customer_key identifying the customer. Required when not using client_session_with_customer auth.",
68883
+ type: "string"
68884
+ }
68885
+ },
68886
+ {
68887
+ in: "query",
68888
+ name: "reservation_key",
68889
+ required: true,
68890
+ schema: {
68891
+ description: "The reservation_key to filter access grants by.",
68892
+ type: "string"
68893
+ }
68894
+ }
68895
+ ],
68896
+ responses: {
68897
+ 200: {
68898
+ content: {
68899
+ "application/json": {
68900
+ schema: {
68901
+ properties: {
68902
+ access_grants: {
68903
+ items: { $ref: "#/components/schemas/access_grant" },
68904
+ type: "array"
68905
+ },
68906
+ ok: { type: "boolean" }
68907
+ },
68908
+ required: ["access_grants", "ok"],
68909
+ type: "object"
68910
+ }
68911
+ }
68912
+ },
68913
+ description: "OK"
68914
+ },
68915
+ 400: { description: "Bad Request" },
68916
+ 401: { description: "Unauthorized" }
68917
+ },
68918
+ security: [
68919
+ { client_session_with_customer: [] },
68920
+ { console_session_with_workspace: [] }
68921
+ ],
68922
+ summary: "/seam/customer/v1/reservations/list_access_grants",
68923
+ tags: [],
68924
+ "x-fern-sdk-group-name": ["seam", "customer", "v1", "reservations"],
68925
+ "x-fern-sdk-method-name": "list_access_grants",
68926
+ "x-fern-sdk-return-value": "access_grants",
68927
+ "x-response-key": "access_grants",
68928
+ "x-title": "List Access Grants for Reservation",
68929
+ "x-undocumented": "Internal endpoint for customer portals."
68930
+ },
68931
+ post: {
68932
+ description: "Lists access grants linked to a reservation by reservation_key.",
68933
+ operationId: "seamCustomerV1ReservationsListAccessGrantsPost",
68934
+ requestBody: {
68935
+ content: {
68936
+ "application/json": {
68937
+ schema: {
68938
+ properties: {
68939
+ customer_key: {
68940
+ description: "The customer_key identifying the customer. Required when not using client_session_with_customer auth.",
68941
+ type: "string"
68942
+ },
68943
+ reservation_key: {
68944
+ description: "The reservation_key to filter access grants by.",
68945
+ type: "string"
68946
+ }
68947
+ },
68948
+ required: ["reservation_key"],
68949
+ type: "object"
68950
+ }
68951
+ }
68952
+ }
68953
+ },
68954
+ responses: {
68955
+ 200: {
68956
+ content: {
68957
+ "application/json": {
68958
+ schema: {
68959
+ properties: {
68960
+ access_grants: {
68961
+ items: { $ref: "#/components/schemas/access_grant" },
68962
+ type: "array"
68963
+ },
68964
+ ok: { type: "boolean" }
68965
+ },
68966
+ required: ["access_grants", "ok"],
68967
+ type: "object"
68968
+ }
68969
+ }
68970
+ },
68971
+ description: "OK"
68972
+ },
68973
+ 400: { description: "Bad Request" },
68974
+ 401: { description: "Unauthorized" }
68975
+ },
68976
+ security: [
68977
+ { client_session_with_customer: [] },
68978
+ { console_session_with_workspace: [] }
68979
+ ],
68980
+ summary: "/seam/customer/v1/reservations/list_access_grants",
68981
+ tags: [],
68982
+ "x-fern-sdk-group-name": ["seam", "customer", "v1", "reservations"],
68983
+ "x-fern-sdk-method-name": "list_access_grants",
68984
+ "x-fern-sdk-return-value": "access_grants",
68985
+ "x-response-key": "access_grants",
68986
+ "x-title": "List Access Grants for Reservation",
68987
+ "x-undocumented": "Internal endpoint for customer portals."
68988
+ }
68989
+ },
68870
68990
  "/seam/customer/v1/settings/business_verticals/list": {
68871
68991
  get: {
68872
68992
  description: "Returns all available business verticals.",