@forteplatforms/sdk 1.0.346 → 1.0.348

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.
@@ -57,6 +57,24 @@ export interface PaymentFilter {
57
57
  * @memberof PaymentFilter
58
58
  */
59
59
  notIds?: Array<string>;
60
+ /**
61
+ *
62
+ * @type {PaymentFilterProductGroupByType}
63
+ * @memberof PaymentFilter
64
+ */
65
+ productGroupBy?: PaymentFilterProductGroupByType;
66
+ /**
67
+ *
68
+ * @type {string}
69
+ * @memberof PaymentFilter
70
+ */
71
+ productKey?: string;
72
+ /**
73
+ *
74
+ * @type {string}
75
+ * @memberof PaymentFilter
76
+ */
77
+ productMetadataKey?: string;
60
78
  }
61
79
  /**
62
80
  * @export
@@ -84,6 +102,15 @@ export declare const PaymentFilterNotStatesType: {
84
102
  readonly REFUNDED: "REFUNDED";
85
103
  };
86
104
  export type PaymentFilterNotStatesType = typeof PaymentFilterNotStatesType[keyof typeof PaymentFilterNotStatesType];
105
+ /**
106
+ * @export
107
+ */
108
+ export declare const PaymentFilterProductGroupByType: {
109
+ readonly LINE_ITEM_DESCRIPTION: "LINE_ITEM_DESCRIPTION";
110
+ readonly PAYMENT_DESCRIPTION: "PAYMENT_DESCRIPTION";
111
+ readonly METADATA: "METADATA";
112
+ };
113
+ export type PaymentFilterProductGroupByType = typeof PaymentFilterProductGroupByType[keyof typeof PaymentFilterProductGroupByType];
87
114
  /**
88
115
  * Check if a given object implements the PaymentFilter interface.
89
116
  */
@@ -13,7 +13,7 @@
13
13
  * Do not edit the class manually.
14
14
  */
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
- exports.PaymentFilterNotStatesType = exports.PaymentFilterStatesType = void 0;
16
+ exports.PaymentFilterProductGroupByType = exports.PaymentFilterNotStatesType = exports.PaymentFilterStatesType = void 0;
17
17
  exports.instanceOfPaymentFilter = instanceOfPaymentFilter;
18
18
  exports.PaymentFilterFromJSON = PaymentFilterFromJSON;
19
19
  exports.PaymentFilterFromJSONTyped = PaymentFilterFromJSONTyped;
@@ -43,6 +43,14 @@ exports.PaymentFilterNotStatesType = {
43
43
  PARTIALLY_REFUNDED: 'PARTIALLY_REFUNDED',
44
44
  REFUNDED: 'REFUNDED'
45
45
  };
46
+ /**
47
+ * @export
48
+ */
49
+ exports.PaymentFilterProductGroupByType = {
50
+ LINE_ITEM_DESCRIPTION: 'LINE_ITEM_DESCRIPTION',
51
+ PAYMENT_DESCRIPTION: 'PAYMENT_DESCRIPTION',
52
+ METADATA: 'METADATA'
53
+ };
46
54
  /**
47
55
  * Check if a given object implements the PaymentFilter interface.
48
56
  */
@@ -64,6 +72,9 @@ function PaymentFilterFromJSONTyped(json, ignoreDiscriminator) {
64
72
  'userId': json['userId'] == null ? undefined : json['userId'],
65
73
  'ids': json['ids'] == null ? undefined : json['ids'],
66
74
  'notIds': json['notIds'] == null ? undefined : json['notIds'],
75
+ 'productGroupBy': json['productGroupBy'] == null ? undefined : json['productGroupBy'],
76
+ 'productKey': json['productKey'] == null ? undefined : json['productKey'],
77
+ 'productMetadataKey': json['productMetadataKey'] == null ? undefined : json['productMetadataKey'],
67
78
  };
68
79
  }
69
80
  function PaymentFilterToJSON(json) {
@@ -82,5 +93,8 @@ function PaymentFilterToJSONTyped(value, ignoreDiscriminator) {
82
93
  'userId': value['userId'],
83
94
  'ids': value['ids'],
84
95
  'notIds': value['notIds'],
96
+ 'productGroupBy': value['productGroupBy'],
97
+ 'productKey': value['productKey'],
98
+ 'productMetadataKey': value['productMetadataKey'],
85
99
  };
86
100
  }
@@ -53,6 +53,12 @@ export interface RegisterUserRequest {
53
53
  * @memberof RegisterUserRequest
54
54
  */
55
55
  password?: string;
56
+ /**
57
+ *
58
+ * @type {boolean}
59
+ * @memberof RegisterUserRequest
60
+ */
61
+ sendWelcomeMessage?: boolean;
56
62
  }
57
63
  /**
58
64
  * Check if a given object implements the RegisterUserRequest interface.
@@ -38,6 +38,7 @@ function RegisterUserRequestFromJSONTyped(json, ignoreDiscriminator) {
38
38
  'customMetadataAttributes': json['customMetadataAttributes'] == null ? undefined : json['customMetadataAttributes'],
39
39
  'recaptchaToken': json['recaptchaToken'] == null ? undefined : json['recaptchaToken'],
40
40
  'password': json['password'] == null ? undefined : json['password'],
41
+ 'sendWelcomeMessage': json['sendWelcomeMessage'] == null ? undefined : json['sendWelcomeMessage'],
41
42
  };
42
43
  }
43
44
  function RegisterUserRequestToJSON(json) {
@@ -55,5 +56,6 @@ function RegisterUserRequestToJSONTyped(value, ignoreDiscriminator) {
55
56
  'customMetadataAttributes': value['customMetadataAttributes'],
56
57
  'recaptchaToken': value['recaptchaToken'],
57
58
  'password': value['password'],
59
+ 'sendWelcomeMessage': value['sendWelcomeMessage'],
58
60
  };
59
61
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forteplatforms/sdk",
3
- "version": "1.0.346",
3
+ "version": "1.0.348",
4
4
  "description": "Official TypeScript SDK for Forte Platforms",
5
5
  "author": "Forte Platforms <support@forteplatforms.com>",
6
6
  "repository": {