@seamapi/types 1.76.1 → 1.78.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.
@@ -12920,6 +12920,10 @@ declare const _default: {
12920
12920
  default: string;
12921
12921
  type: string;
12922
12922
  };
12923
+ seos_tsm_endpoint_id: {
12924
+ default: number;
12925
+ type: string;
12926
+ };
12923
12927
  };
12924
12928
  type: string;
12925
12929
  };
@@ -16350,8 +16354,8 @@ declare const _default: {
16350
16354
  'application/json': {
16351
16355
  schema: {
16352
16356
  properties: {
16353
- message: {
16354
- type: string;
16357
+ action_attempt: {
16358
+ $ref: string;
16355
16359
  };
16356
16360
  ok: {
16357
16361
  type: string;
@@ -21971,6 +21975,7 @@ interface Routes {
21971
21975
  nfc_capability?: boolean;
21972
21976
  application_version?: string;
21973
21977
  seos_applet_version?: string;
21978
+ seos_tsm_endpoint_id?: number;
21974
21979
  };
21975
21980
  };
21976
21981
  commonParams: {};
@@ -24419,7 +24424,28 @@ interface Routes {
24419
24424
  commonParams: {};
24420
24425
  formData: {};
24421
24426
  jsonResponse: {
24422
- message: string;
24427
+ action_attempt: {
24428
+ status: 'success';
24429
+ action_type: string;
24430
+ action_attempt_id: string;
24431
+ result?: any;
24432
+ error: null;
24433
+ } | {
24434
+ status: 'pending';
24435
+ action_type: string;
24436
+ action_attempt_id: string;
24437
+ result: null;
24438
+ error: null;
24439
+ } | {
24440
+ status: 'error';
24441
+ action_type: string;
24442
+ action_attempt_id: string;
24443
+ result: null;
24444
+ error: {
24445
+ type: string;
24446
+ message: string;
24447
+ };
24448
+ };
24423
24449
  };
24424
24450
  };
24425
24451
  }
@@ -12846,6 +12846,10 @@ declare const _default: {
12846
12846
  default: string;
12847
12847
  type: string;
12848
12848
  };
12849
+ seos_tsm_endpoint_id: {
12850
+ default: number;
12851
+ type: string;
12852
+ };
12849
12853
  };
12850
12854
  type: string;
12851
12855
  };
@@ -16276,8 +16280,8 @@ declare const _default: {
16276
16280
  'application/json': {
16277
16281
  schema: {
16278
16282
  properties: {
16279
- message: {
16280
- type: string;
16283
+ action_attempt: {
16284
+ $ref: string;
16281
16285
  };
16282
16286
  ok: {
16283
16287
  type: string;
@@ -9739,6 +9739,7 @@ export default {
9739
9739
  hce_capability: { default: false, type: 'boolean' },
9740
9740
  nfc_capability: { default: false, type: 'boolean' },
9741
9741
  seos_applet_version: { default: '1.0.0', type: 'string' },
9742
+ seos_tsm_endpoint_id: { default: 1, type: 'number' },
9742
9743
  },
9743
9744
  type: 'object',
9744
9745
  },
@@ -12130,10 +12131,12 @@ export default {
12130
12131
  'application/json': {
12131
12132
  schema: {
12132
12133
  properties: {
12133
- message: { type: 'string' },
12134
+ action_attempt: {
12135
+ $ref: '#/components/schemas/action_attempt',
12136
+ },
12134
12137
  ok: { type: 'boolean' },
12135
12138
  },
12136
- required: ['message', 'ok'],
12139
+ required: ['action_attempt', 'ok'],
12137
12140
  type: 'object',
12138
12141
  },
12139
12142
  },