ultracart_rest_api_v2_typescript 3.10.133 → 3.10.135

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/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## ultracart_rest_api_v2_typescript@3.10.133
1
+ ## ultracart_rest_api_v2_typescript@3.10.135
2
2
 
3
3
  This generator creates TypeScript/JavaScript client that utilizes [Fetch API](https://fetch.spec.whatwg.org/). The generated Node module can be used in the following environments:
4
4
 
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
36
36
  _published:_
37
37
 
38
38
  ```
39
- npm install ultracart_rest_api_v2_typescript@3.10.133 --save
39
+ npm install ultracart_rest_api_v2_typescript@3.10.135 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -54,6 +54,8 @@ Not every change is committed to every SDK.
54
54
 
55
55
  | Version | Date | Comments |
56
56
  | --: | :-: | --- |
57
+ | 3.10.135 | 04/27/2023 | order - expose dual vaulted identifiers |
58
+ | 3.10.134 | 04/24/2023 | internal development - data warehouse |
57
59
  | 3.10.133 | 04/21/2023 | internal development - data warehouse |
58
60
  | 3.10.132 | 04/19/2023 | internal development - data warehouse |
59
61
  | 3.10.131 | 04/19/2023 | internal dev - data warehouse |
package/api.ts CHANGED
@@ -30904,6 +30904,12 @@ export interface OrderPaymentCreditCard {
30904
30904
  * @memberof OrderPaymentCreditCard
30905
30905
  */
30906
30906
  card_verification_number_token?: string;
30907
+ /**
30908
+ *
30909
+ * @type {OrderPaymentCreditCardDualVaulted}
30910
+ * @memberof OrderPaymentCreditCard
30911
+ */
30912
+ dual_vaulted?: OrderPaymentCreditCardDualVaulted;
30907
30913
  }
30908
30914
 
30909
30915
  /**
@@ -30925,6 +30931,52 @@ export namespace OrderPaymentCreditCard {
30925
30931
  }
30926
30932
  }
30927
30933
 
30934
+ /**
30935
+ *
30936
+ * @export
30937
+ * @interface OrderPaymentCreditCardDualVaulted
30938
+ */
30939
+ export interface OrderPaymentCreditCardDualVaulted {
30940
+ /**
30941
+ *
30942
+ * @type {string}
30943
+ * @memberof OrderPaymentCreditCardDualVaulted
30944
+ */
30945
+ gateway_name?: string;
30946
+ /**
30947
+ *
30948
+ * @type {Array<OrderPaymentCreditCardDualVaultedProperty>}
30949
+ * @memberof OrderPaymentCreditCardDualVaulted
30950
+ */
30951
+ properties?: Array<OrderPaymentCreditCardDualVaultedProperty>;
30952
+ /**
30953
+ *
30954
+ * @type {string}
30955
+ * @memberof OrderPaymentCreditCardDualVaulted
30956
+ */
30957
+ rotating_transaction_gateway_code?: string;
30958
+ }
30959
+
30960
+ /**
30961
+ *
30962
+ * @export
30963
+ * @interface OrderPaymentCreditCardDualVaultedProperty
30964
+ */
30965
+ export interface OrderPaymentCreditCardDualVaultedProperty {
30966
+ /**
30967
+ *
30968
+ * @type {string}
30969
+ * @memberof OrderPaymentCreditCardDualVaultedProperty
30970
+ */
30971
+ name?: string;
30972
+ /**
30973
+ *
30974
+ * @type {string}
30975
+ * @memberof OrderPaymentCreditCardDualVaultedProperty
30976
+ */
30977
+ value?: string;
30978
+ }
30979
+
30928
30980
  /**
30929
30981
  *
30930
30982
  * @export
@@ -33588,7 +33640,7 @@ export interface ReportDataSet {
33588
33640
  */
33589
33641
  merchant_id?: string;
33590
33642
  /**
33591
- * The size of the pages
33643
+ * The total number of pages in the result set
33592
33644
  * @type {number}
33593
33645
  * @memberof ReportDataSet
33594
33646
  */
@@ -33945,6 +33997,12 @@ export interface ReportDataSetRow {
33945
33997
  * @interface ReportDataSetSchema
33946
33998
  */
33947
33999
  export interface ReportDataSetSchema {
34000
+ /**
34001
+ * A JSON representation of the configuration for this visualization
34002
+ * @type {string}
34003
+ * @memberof ReportDataSetSchema
34004
+ */
34005
+ config?: string;
33948
34006
  /**
33949
34007
  *
33950
34008
  * @type {string}
@@ -34033,6 +34091,12 @@ export interface ReportDataSource {
34033
34091
  * @interface ReportDataSourceSchema
34034
34092
  */
34035
34093
  export interface ReportDataSourceSchema {
34094
+ /**
34095
+ * A JSON representation of the configuration for this visualization
34096
+ * @type {string}
34097
+ * @memberof ReportDataSourceSchema
34098
+ */
34099
+ config?: string;
34036
34100
  /**
34037
34101
  * Whether or not this column can be used as a dimension within a visualization
34038
34102
  * @type {boolean}
package/dist/api.d.ts CHANGED
@@ -30253,6 +30253,12 @@ export interface OrderPaymentCreditCard {
30253
30253
  * @memberof OrderPaymentCreditCard
30254
30254
  */
30255
30255
  card_verification_number_token?: string;
30256
+ /**
30257
+ *
30258
+ * @type {OrderPaymentCreditCardDualVaulted}
30259
+ * @memberof OrderPaymentCreditCard
30260
+ */
30261
+ dual_vaulted?: OrderPaymentCreditCardDualVaulted;
30256
30262
  }
30257
30263
  /**
30258
30264
  * @export
@@ -30272,6 +30278,50 @@ export declare namespace OrderPaymentCreditCard {
30272
30278
  VISA
30273
30279
  }
30274
30280
  }
30281
+ /**
30282
+ *
30283
+ * @export
30284
+ * @interface OrderPaymentCreditCardDualVaulted
30285
+ */
30286
+ export interface OrderPaymentCreditCardDualVaulted {
30287
+ /**
30288
+ *
30289
+ * @type {string}
30290
+ * @memberof OrderPaymentCreditCardDualVaulted
30291
+ */
30292
+ gateway_name?: string;
30293
+ /**
30294
+ *
30295
+ * @type {Array<OrderPaymentCreditCardDualVaultedProperty>}
30296
+ * @memberof OrderPaymentCreditCardDualVaulted
30297
+ */
30298
+ properties?: Array<OrderPaymentCreditCardDualVaultedProperty>;
30299
+ /**
30300
+ *
30301
+ * @type {string}
30302
+ * @memberof OrderPaymentCreditCardDualVaulted
30303
+ */
30304
+ rotating_transaction_gateway_code?: string;
30305
+ }
30306
+ /**
30307
+ *
30308
+ * @export
30309
+ * @interface OrderPaymentCreditCardDualVaultedProperty
30310
+ */
30311
+ export interface OrderPaymentCreditCardDualVaultedProperty {
30312
+ /**
30313
+ *
30314
+ * @type {string}
30315
+ * @memberof OrderPaymentCreditCardDualVaultedProperty
30316
+ */
30317
+ name?: string;
30318
+ /**
30319
+ *
30320
+ * @type {string}
30321
+ * @memberof OrderPaymentCreditCardDualVaultedProperty
30322
+ */
30323
+ value?: string;
30324
+ }
30275
30325
  /**
30276
30326
  *
30277
30327
  * @export
@@ -32888,7 +32938,7 @@ export interface ReportDataSet {
32888
32938
  */
32889
32939
  merchant_id?: string;
32890
32940
  /**
32891
- * The size of the pages
32941
+ * The total number of pages in the result set
32892
32942
  * @type {number}
32893
32943
  * @memberof ReportDataSet
32894
32944
  */
@@ -33236,6 +33286,12 @@ export interface ReportDataSetRow {
33236
33286
  * @interface ReportDataSetSchema
33237
33287
  */
33238
33288
  export interface ReportDataSetSchema {
33289
+ /**
33290
+ * A JSON representation of the configuration for this visualization
33291
+ * @type {string}
33292
+ * @memberof ReportDataSetSchema
33293
+ */
33294
+ config?: string;
33239
33295
  /**
33240
33296
  *
33241
33297
  * @type {string}
@@ -33321,6 +33377,12 @@ export interface ReportDataSource {
33321
33377
  * @interface ReportDataSourceSchema
33322
33378
  */
33323
33379
  export interface ReportDataSourceSchema {
33380
+ /**
33381
+ * A JSON representation of the configuration for this visualization
33382
+ * @type {string}
33383
+ * @memberof ReportDataSourceSchema
33384
+ */
33385
+ config?: string;
33324
33386
  /**
33325
33387
  * Whether or not this column can be used as a dimension within a visualization
33326
33388
  * @type {boolean}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ultracart_rest_api_v2_typescript",
3
- "version": "3.10.133",
3
+ "version": "3.10.135",
4
4
  "description": "UltraCart Rest TypeScript SDK",
5
5
  "author": "UltraCart",
6
6
  "keywords": [