@seamapi/types 1.730.0 → 1.731.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.
@@ -52893,16 +52893,16 @@ declare const _default: {
52893
52893
  name: string;
52894
52894
  schema: {
52895
52895
  description: string;
52896
- format: string;
52897
52896
  type: string;
52897
+ format?: never;
52898
52898
  };
52899
52899
  } | {
52900
52900
  in: string;
52901
52901
  name: string;
52902
52902
  schema: {
52903
52903
  description: string;
52904
+ format: string;
52904
52905
  type: string;
52905
- format?: never;
52906
52906
  };
52907
52907
  })[];
52908
52908
  responses: {
@@ -53057,9 +53057,13 @@ declare const _default: {
53057
53057
  description: string;
53058
53058
  };
53059
53059
  };
53060
- security: {
53060
+ security: ({
53061
53061
  client_session_with_customer: never[];
53062
- }[];
53062
+ console_session_with_workspace?: never;
53063
+ } | {
53064
+ console_session_with_workspace: never[];
53065
+ client_session_with_customer?: never;
53066
+ })[];
53063
53067
  summary: string;
53064
53068
  tags: never[];
53065
53069
  'x-fern-sdk-group-name': string[];
@@ -53077,6 +53081,10 @@ declare const _default: {
53077
53081
  'application/json': {
53078
53082
  schema: {
53079
53083
  properties: {
53084
+ customer_key: {
53085
+ description: string;
53086
+ type: string;
53087
+ };
53080
53088
  reservation_id: {
53081
53089
  description: string;
53082
53090
  format: string;
@@ -53244,9 +53252,13 @@ declare const _default: {
53244
53252
  description: string;
53245
53253
  };
53246
53254
  };
53247
- security: {
53255
+ security: ({
53248
53256
  client_session_with_customer: never[];
53249
- }[];
53257
+ console_session_with_workspace?: never;
53258
+ } | {
53259
+ console_session_with_workspace: never[];
53260
+ client_session_with_customer?: never;
53261
+ })[];
53250
53262
  summary: string;
53251
53263
  tags: never[];
53252
53264
  'x-fern-sdk-group-name': string[];
@@ -53510,9 +53522,13 @@ declare const _default: {
53510
53522
  description: string;
53511
53523
  };
53512
53524
  };
53513
- security: {
53525
+ security: ({
53514
53526
  client_session_with_customer: never[];
53515
- }[];
53527
+ console_session_with_workspace?: never;
53528
+ } | {
53529
+ console_session_with_workspace: never[];
53530
+ client_session_with_customer?: never;
53531
+ })[];
53516
53532
  summary: string;
53517
53533
  tags: never[];
53518
53534
  'x-fern-sdk-group-name': string[];
@@ -53535,6 +53551,10 @@ declare const _default: {
53535
53551
  format: string;
53536
53552
  type: string;
53537
53553
  };
53554
+ customer_key: {
53555
+ description: string;
53556
+ type: string;
53557
+ };
53538
53558
  limit: {
53539
53559
  default: number;
53540
53560
  description: string;
@@ -53750,9 +53770,13 @@ declare const _default: {
53750
53770
  description: string;
53751
53771
  };
53752
53772
  };
53753
- security: {
53773
+ security: ({
53754
53774
  client_session_with_customer: never[];
53755
- }[];
53775
+ console_session_with_workspace?: never;
53776
+ } | {
53777
+ console_session_with_workspace: never[];
53778
+ client_session_with_customer?: never;
53779
+ })[];
53756
53780
  summary: string;
53757
53781
  tags: never[];
53758
53782
  'x-fern-sdk-group-name': string[];
@@ -58705,6 +58705,14 @@ export default {
58705
58705
  description: 'Returns a single reservation for a specific customer by reservation ID.',
58706
58706
  operationId: 'seamCustomerV1ReservationsGetGet',
58707
58707
  parameters: [
58708
+ {
58709
+ in: 'query',
58710
+ name: 'customer_key',
58711
+ schema: {
58712
+ description: 'The customer_key identifying the customer. Required when not using client_session_with_customer auth.',
58713
+ type: 'string',
58714
+ },
58715
+ },
58708
58716
  {
58709
58717
  in: 'query',
58710
58718
  name: 'reservation_id',
@@ -58851,7 +58859,10 @@ export default {
58851
58859
  400: { description: 'Bad Request' },
58852
58860
  401: { description: 'Unauthorized' },
58853
58861
  },
58854
- security: [{ client_session_with_customer: [] }],
58862
+ security: [
58863
+ { client_session_with_customer: [] },
58864
+ { console_session_with_workspace: [] },
58865
+ ],
58855
58866
  summary: '/seam/customer/v1/reservations/get',
58856
58867
  tags: [],
58857
58868
  'x-fern-sdk-group-name': ['seam', 'customer', 'v1', 'reservations'],
@@ -58869,6 +58880,10 @@ export default {
58869
58880
  'application/json': {
58870
58881
  schema: {
58871
58882
  properties: {
58883
+ customer_key: {
58884
+ description: 'The customer_key identifying the customer. Required when not using client_session_with_customer auth.',
58885
+ type: 'string',
58886
+ },
58872
58887
  reservation_id: {
58873
58888
  description: 'ID of the reservation to retrieve.',
58874
58889
  format: 'uuid',
@@ -59012,7 +59027,10 @@ export default {
59012
59027
  400: { description: 'Bad Request' },
59013
59028
  401: { description: 'Unauthorized' },
59014
59029
  },
59015
- security: [{ client_session_with_customer: [] }],
59030
+ security: [
59031
+ { client_session_with_customer: [] },
59032
+ { console_session_with_workspace: [] },
59033
+ ],
59016
59034
  summary: '/seam/customer/v1/reservations/get',
59017
59035
  tags: [],
59018
59036
  'x-fern-sdk-group-name': ['seam', 'customer', 'v1', 'reservations'],
@@ -59028,6 +59046,14 @@ export default {
59028
59046
  description: 'Returns a list of reservations for a specific customer. This endpoint is designed for customer portals and supports filtering by space_key.',
59029
59047
  operationId: 'seamCustomerV1ReservationsListGet',
59030
59048
  parameters: [
59049
+ {
59050
+ in: 'query',
59051
+ name: 'customer_key',
59052
+ schema: {
59053
+ description: 'The customer_key identifying the customer. Required when not using client_session_with_customer auth.',
59054
+ type: 'string',
59055
+ },
59056
+ },
59031
59057
  {
59032
59058
  in: 'query',
59033
59059
  name: 'space_key',
@@ -59250,7 +59276,10 @@ export default {
59250
59276
  400: { description: 'Bad Request' },
59251
59277
  401: { description: 'Unauthorized' },
59252
59278
  },
59253
- security: [{ client_session_with_customer: [] }],
59279
+ security: [
59280
+ { client_session_with_customer: [] },
59281
+ { console_session_with_workspace: [] },
59282
+ ],
59254
59283
  summary: '/seam/customer/v1/reservations/list',
59255
59284
  tags: [],
59256
59285
  'x-fern-sdk-group-name': ['seam', 'customer', 'v1', 'reservations'],
@@ -59273,6 +59302,10 @@ export default {
59273
59302
  format: 'date-time',
59274
59303
  type: 'string',
59275
59304
  },
59305
+ customer_key: {
59306
+ description: 'The customer_key identifying the customer. Required when not using client_session_with_customer auth.',
59307
+ type: 'string',
59308
+ },
59276
59309
  limit: {
59277
59310
  default: 500,
59278
59311
  description: 'Maximum number of records to return per page.',
@@ -59471,7 +59504,10 @@ export default {
59471
59504
  400: { description: 'Bad Request' },
59472
59505
  401: { description: 'Unauthorized' },
59473
59506
  },
59474
- security: [{ client_session_with_customer: [] }],
59507
+ security: [
59508
+ { client_session_with_customer: [] },
59509
+ { console_session_with_workspace: [] },
59510
+ ],
59475
59511
  summary: '/seam/customer/v1/reservations/list',
59476
59512
  tags: [],
59477
59513
  'x-fern-sdk-group-name': ['seam', 'customer', 'v1', 'reservations'],