Skip to content

Commit 65b50a3

Browse files
feat(api): api update
1 parent 1a25e56 commit 65b50a3

File tree

4 files changed

+24
-24
lines changed

4 files changed

+24
-24
lines changed

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 38
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/ivy%2Fgetivy-baca902da3ed80207246c8e6f5193611785ff53b05317861d9cd4c7709742c69.yml
3-
openapi_spec_hash: 38c60d09737c4ef6272f72e57d7f65b0
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/ivy%2Fgetivy-a5c26f70f6efc69def742edd44fe066291452b0bc580bda2c78198264bc1d172.yml
3+
openapi_spec_hash: 5eacc98fd6f6a96a44e779c2ce7e2bd4
44
config_hash: 279607e9c3acabbd35a648b3551c79a9

src/resources/checkoutsession.ts

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -303,8 +303,8 @@ export interface CheckoutsessionCreateResponse {
303303
createdAt: string;
304304

305305
/**
306-
* The customer facing id. This id is displayed to the user during the checkout and
307-
* in the merchant dashboard.
306+
* @deprecated Currently only visible in the merchant dashboard. This id used to be
307+
* displayed to the user during the checkout.
308308
*/
309309
displayId: string;
310310

@@ -2298,8 +2298,8 @@ export interface CheckoutsessionRetrieveResponse {
22982298
createdAt: string;
22992299

23002300
/**
2301-
* The customer facing id. This id is displayed to the user during the checkout and
2302-
* in the merchant dashboard.
2301+
* @deprecated Currently only visible in the merchant dashboard. This id used to be
2302+
* displayed to the user during the checkout.
23032303
*/
23042304
displayId: string;
23052305

@@ -4293,8 +4293,8 @@ export interface CheckoutsessionExpireResponse {
42934293
createdAt: string;
42944294

42954295
/**
4296-
* The customer facing id. This id is displayed to the user during the checkout and
4297-
* in the merchant dashboard.
4296+
* @deprecated Currently only visible in the merchant dashboard. This id used to be
4297+
* displayed to the user during the checkout.
42984298
*/
42994299
displayId: string;
43004300

@@ -6052,8 +6052,8 @@ export interface CheckoutsessionCreateParams {
60526052
completeCallbackUrl?: string;
60536053

60546054
/**
6055-
* The Epoch time in seconds at which the Checkout Session was created. By default,
6056-
* time of Checkout creation at Ivy.
6055+
* @deprecated The Epoch time in seconds at which the Checkout Session was created.
6056+
* By default, time of Checkout creation at Ivy.
60576057
*/
60586058
created?: number;
60596059

@@ -6069,9 +6069,8 @@ export interface CheckoutsessionCreateParams {
60696069
disableBankSelection?: boolean;
60706070

60716071
/**
6072-
* The customer facing id. This id is displayed to the user during the checkout and
6073-
* in the merchant dashboard. It does not need to be unique and should be a
6074-
* customer-friendly id.
6072+
* @deprecated Currently only visible in the merchant dashboard. This id used to be
6073+
* displayed to the user during the checkout.
60756074
*/
60766075
displayId?: string;
60776076

@@ -6083,8 +6082,8 @@ export interface CheckoutsessionCreateParams {
60836082

60846083
/**
60856084
* The Epoch time in seconds at which the Checkout Session will expire. It can be
6086-
* anywhere from 30 minutes to 24 hours after Checkout Session creation. By
6087-
* default, this value is 1 hour from creation.
6085+
* anywhere from 5 minutes to 6 days after Checkout Session creation. By default,
6086+
* this value is 1 hour from creation.
60886087
*/
60896088
expiresAt?: number;
60906089

src/resources/data/session.ts

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,8 @@ export interface SessionCreateResponse {
295295
disableBankSelection: boolean;
296296

297297
/**
298-
* The display ID of the data session.
298+
* @deprecated Currently only visible in the merchant dashboard. This id used to be
299+
* displayed to the user during the checkout.
299300
*/
300301
displayId: string;
301302

@@ -633,7 +634,8 @@ export interface SessionRetrieveResponse {
633634
disableBankSelection: boolean;
634635

635636
/**
636-
* The display ID of the data session.
637+
* @deprecated Currently only visible in the merchant dashboard. This id used to be
638+
* displayed to the user during the checkout.
637639
*/
638640
displayId: string;
639641

@@ -969,9 +971,8 @@ export interface SessionCreateParams {
969971
disableBankSelection?: boolean;
970972

971973
/**
972-
* The customer facing id. This id is displayed to the user during the data session
973-
* and in the merchant dashboard. It does not need to be unique and should be a
974-
* customer-friendly id.
974+
* @deprecated Currently only visible in the merchant dashboard. This id used to be
975+
* displayed to the user during the checkout.
975976
*/
976977
displayId?: string;
977978

src/resources/orders.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -138,8 +138,8 @@ export interface OrderCreateResponse {
138138
destination?: OrderCreateResponse.Destination;
139139

140140
/**
141-
* The customer facing id. This id is displayed to the user during the checkout and
142-
* in the merchant dashboard.
141+
* @deprecated Currently only visible in the merchant dashboard. This id used to be
142+
* displayed to the user during the checkout.
143143
*/
144144
displayId?: string;
145145

@@ -1779,8 +1779,8 @@ export interface OrderRetrieveResponse {
17791779
destination?: OrderRetrieveResponse.Destination;
17801780

17811781
/**
1782-
* The customer facing id. This id is displayed to the user during the checkout and
1783-
* in the merchant dashboard.
1782+
* @deprecated Currently only visible in the merchant dashboard. This id used to be
1783+
* displayed to the user during the checkout.
17841784
*/
17851785
displayId?: string;
17861786

0 commit comments

Comments
 (0)