@teemill/platform 0.63.0 → 0.64.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.
@@ -75,6 +75,8 @@ docs/OrderStatus.md
75
75
  docs/OrderTracking.md
76
76
  docs/OrdersApi.md
77
77
  docs/OrdersResponse.md
78
+ docs/OrdersResponseMeta.md
79
+ docs/OrdersResponseMetaFilters.md
78
80
  docs/Origin.md
79
81
  docs/PaymentAccount.md
80
82
  docs/PaymentApi.md
@@ -1 +1 @@
1
- 7.20.0
1
+ 7.21.0
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @teemill/platform@0.63.0
1
+ ## @teemill/platform@0.64.0
2
2
 
3
3
  This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). 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 @teemill/platform@0.63.0 --save
39
+ npm install @teemill/platform@0.64.0 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -175,6 +175,8 @@ Class | Method | HTTP request | Description
175
175
  - [OrderStatus](docs/OrderStatus.md)
176
176
  - [OrderTracking](docs/OrderTracking.md)
177
177
  - [OrdersResponse](docs/OrdersResponse.md)
178
+ - [OrdersResponseMeta](docs/OrdersResponseMeta.md)
179
+ - [OrdersResponseMetaFilters](docs/OrdersResponseMetaFilters.md)
178
180
  - [Origin](docs/Origin.md)
179
181
  - [PaymentAccount](docs/PaymentAccount.md)
180
182
  - [PaymentAttempt](docs/PaymentAttempt.md)
package/api.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Platform
5
5
  * Manage Your podOS platform
6
6
  *
7
- * The version of the OpenAPI document: 0.63.0
7
+ * The version of the OpenAPI document: 0.64.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -80,7 +80,7 @@ export interface AmendOrderRequestAmendmentsInner {
80
80
 
81
81
  export const AmendOrderRequestAmendmentsInnerActionEnum = {
82
82
  Refund: 'refund',
83
- Exchange: 'exchange'
83
+ Exchange: 'exchange',
84
84
  } as const;
85
85
 
86
86
  export type AmendOrderRequestAmendmentsInnerActionEnum = typeof AmendOrderRequestAmendmentsInnerActionEnum[keyof typeof AmendOrderRequestAmendmentsInnerActionEnum];
@@ -126,7 +126,7 @@ export interface AmendmentLog {
126
126
  export const AmendmentLogAmendmentTypeEnum = {
127
127
  Refund: 'refund',
128
128
  Exchange: 'exchange',
129
- ShippingRefund: 'shipping_refund'
129
+ ShippingRefund: 'shipping_refund',
130
130
  } as const;
131
131
 
132
132
  export type AmendmentLogAmendmentTypeEnum = typeof AmendmentLogAmendmentTypeEnum[keyof typeof AmendmentLogAmendmentTypeEnum];
@@ -153,7 +153,7 @@ export interface Application {
153
153
 
154
154
  export const ApplicationPlacementEnum = {
155
155
  Front: 'front',
156
- Back: 'back'
156
+ Back: 'back',
157
157
  } as const;
158
158
 
159
159
  export type ApplicationPlacementEnum = typeof ApplicationPlacementEnum[keyof typeof ApplicationPlacementEnum];
@@ -277,7 +277,7 @@ export interface CreateOrderPaymentMethod {
277
277
  export const CreateOrderPaymentMethodTypeEnum = {
278
278
  Card: 'card',
279
279
  Bacs: 'bacs',
280
- Terms: 'terms'
280
+ Terms: 'terms',
281
281
  } as const;
282
282
 
283
283
  export type CreateOrderPaymentMethodTypeEnum = typeof CreateOrderPaymentMethodTypeEnum[keyof typeof CreateOrderPaymentMethodTypeEnum];
@@ -389,7 +389,7 @@ export interface CustomsInformation {
389
389
  }
390
390
 
391
391
  export const CustomsInformationPreRegistrationTypeEnum = {
392
- Ioss: 'IOSS'
392
+ Ioss: 'IOSS',
393
393
  } as const;
394
394
 
395
395
  export type CustomsInformationPreRegistrationTypeEnum = typeof CustomsInformationPreRegistrationTypeEnum[keyof typeof CustomsInformationPreRegistrationTypeEnum];
@@ -472,7 +472,7 @@ export interface Enquiry {
472
472
  export const EnquiryStatusEnum = {
473
473
  New: 'New',
474
474
  Archived: 'Archived',
475
- Priority: 'Priority'
475
+ Priority: 'Priority',
476
476
  } as const;
477
477
 
478
478
  export type EnquiryStatusEnum = typeof EnquiryStatusEnum[keyof typeof EnquiryStatusEnum];
@@ -811,7 +811,7 @@ export const OrderStatus = {
811
811
  Processing: 'processing',
812
812
  Complete: 'complete',
813
813
  Refunded: 'refunded',
814
- Moderation: 'moderation'
814
+ Moderation: 'moderation',
815
815
  } as const;
816
816
 
817
817
  export type OrderStatus = typeof OrderStatus[keyof typeof OrderStatus];
@@ -823,8 +823,24 @@ export interface OrderTracking {
823
823
  'url'?: string;
824
824
  }
825
825
  export interface OrdersResponse {
826
- 'orders'?: Array<Order>;
827
- 'nextPageToken'?: number;
826
+ 'orders': Array<Order>;
827
+ 'meta'?: OrdersResponseMeta;
828
+ 'nextPageToken': number | null;
829
+ }
830
+ /**
831
+ * Object containing metadata about the orders list
832
+ */
833
+ export interface OrdersResponseMeta {
834
+ 'filters': OrdersResponseMetaFilters;
835
+ }
836
+ /**
837
+ * Filters that can be applied to the orders list.
838
+ */
839
+ export interface OrdersResponseMetaFilters {
840
+ /**
841
+ * Sources that can be used to filter the orders list, such as Website, Shopify, or Etsy.
842
+ */
843
+ 'sources': Array<string> | null;
828
844
  }
829
845
  export interface Origin {
830
846
  'code'?: string;
@@ -846,7 +862,7 @@ export interface PaymentAccount {
846
862
  }
847
863
 
848
864
  export const PaymentAccountMethodEnum = {
849
- Stripe: 'stripe'
865
+ Stripe: 'stripe',
850
866
  } as const;
851
867
 
852
868
  export type PaymentAccountMethodEnum = typeof PaymentAccountMethodEnum[keyof typeof PaymentAccountMethodEnum];
@@ -868,7 +884,7 @@ export interface PaymentAttempt {
868
884
  export const PaymentAttemptPaymentProviderEnum = {
869
885
  Stripe: 'stripe',
870
886
  Paypal: 'paypal',
871
- Wallet: 'wallet'
887
+ Wallet: 'wallet',
872
888
  } as const;
873
889
 
874
890
  export type PaymentAttemptPaymentProviderEnum = typeof PaymentAttemptPaymentProviderEnum[keyof typeof PaymentAttemptPaymentProviderEnum];
@@ -876,7 +892,7 @@ export const PaymentAttemptStatusEnum = {
876
892
  Success: 'success',
877
893
  Failed: 'failed',
878
894
  Pending: 'pending',
879
- Cancelled: 'cancelled'
895
+ Cancelled: 'cancelled',
880
896
  } as const;
881
897
 
882
898
  export type PaymentAttemptStatusEnum = typeof PaymentAttemptStatusEnum[keyof typeof PaymentAttemptStatusEnum];
@@ -957,7 +973,7 @@ export interface PrintArea {
957
973
 
958
974
  export const PriorityLevel = {
959
975
  Standard: 'standard',
960
- Priority: 'priority'
976
+ Priority: 'priority',
961
977
  } as const;
962
978
 
963
979
  export type PriorityLevel = typeof PriorityLevel[keyof typeof PriorityLevel];
@@ -992,7 +1008,7 @@ export interface ReturnOrderRequestReturnsInner {
992
1008
 
993
1009
  export const ReturnOrderRequestReturnsInnerActionEnum = {
994
1010
  Refund: 'refund',
995
- Exchange: 'exchange'
1011
+ Exchange: 'exchange',
996
1012
  } as const;
997
1013
 
998
1014
  export type ReturnOrderRequestReturnsInnerActionEnum = typeof ReturnOrderRequestReturnsInnerActionEnum[keyof typeof ReturnOrderRequestReturnsInnerActionEnum];
@@ -1171,7 +1187,7 @@ export interface UpdateModerationItemRequest {
1171
1187
 
1172
1188
  export const UpdateModerationItemRequestJudgementEnum = {
1173
1189
  Approved: 'approved',
1174
- Denied: 'denied'
1190
+ Denied: 'denied',
1175
1191
  } as const;
1176
1192
 
1177
1193
  export type UpdateModerationItemRequestJudgementEnum = typeof UpdateModerationItemRequestJudgementEnum[keyof typeof UpdateModerationItemRequestJudgementEnum];
@@ -2532,12 +2548,12 @@ export const ExportCustomersSortByEnum = {
2532
2548
  LastPurchased: '+lastPurchased',
2533
2549
  LastPurchased2: '-lastPurchased',
2534
2550
  UsedDiscount: '+usedDiscount',
2535
- UsedDiscount2: '-usedDiscount'
2551
+ UsedDiscount2: '-usedDiscount',
2536
2552
  } as const;
2537
2553
  export type ExportCustomersSortByEnum = typeof ExportCustomersSortByEnum[keyof typeof ExportCustomersSortByEnum];
2538
2554
  export const ExportCustomersGenderEnum = {
2539
2555
  Male: 'male',
2540
- Female: 'female'
2556
+ Female: 'female',
2541
2557
  } as const;
2542
2558
  export type ExportCustomersGenderEnum = typeof ExportCustomersGenderEnum[keyof typeof ExportCustomersGenderEnum];
2543
2559
  export const ListCustomersSortByEnum = {
@@ -2550,12 +2566,12 @@ export const ListCustomersSortByEnum = {
2550
2566
  LastPurchased: '+lastPurchased',
2551
2567
  LastPurchased2: '-lastPurchased',
2552
2568
  UsedDiscount: '+usedDiscount',
2553
- UsedDiscount2: '-usedDiscount'
2569
+ UsedDiscount2: '-usedDiscount',
2554
2570
  } as const;
2555
2571
  export type ListCustomersSortByEnum = typeof ListCustomersSortByEnum[keyof typeof ListCustomersSortByEnum];
2556
2572
  export const ListCustomersGenderEnum = {
2557
2573
  Male: 'male',
2558
- Female: 'female'
2574
+ Female: 'female',
2559
2575
  } as const;
2560
2576
  export type ListCustomersGenderEnum = typeof ListCustomersGenderEnum[keyof typeof ListCustomersGenderEnum];
2561
2577
 
@@ -5534,7 +5550,7 @@ export const ExportOrdersDateFilterTypeEnum = {
5534
5550
  UpdatedAt: 'updatedAt',
5535
5551
  StatusChangedAt: 'statusChangedAt',
5536
5552
  CompletedAt: 'completedAt',
5537
- RefundedAt: 'refundedAt'
5553
+ RefundedAt: 'refundedAt',
5538
5554
  } as const;
5539
5555
  export type ExportOrdersDateFilterTypeEnum = typeof ExportOrdersDateFilterTypeEnum[keyof typeof ExportOrdersDateFilterTypeEnum];
5540
5556
  export const ListOrdersDateFilterTypeEnum = {
@@ -5543,12 +5559,12 @@ export const ListOrdersDateFilterTypeEnum = {
5543
5559
  UpdatedAt: 'updatedAt',
5544
5560
  StatusChangedAt: 'statusChangedAt',
5545
5561
  CompletedAt: 'completedAt',
5546
- RefundedAt: 'refundedAt'
5562
+ RefundedAt: 'refundedAt',
5547
5563
  } as const;
5548
5564
  export type ListOrdersDateFilterTypeEnum = typeof ListOrdersDateFilterTypeEnum[keyof typeof ListOrdersDateFilterTypeEnum];
5549
5565
  export const ListOrdersSortByEnum = {
5550
5566
  CreatedAt: '+createdAt',
5551
- CreatedAt2: '-createdAt'
5567
+ CreatedAt2: '-createdAt',
5552
5568
  } as const;
5553
5569
  export type ListOrdersSortByEnum = typeof ListOrdersSortByEnum[keyof typeof ListOrdersSortByEnum];
5554
5570
 
package/base.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Platform
5
5
  * Manage Your podOS platform
6
6
  *
7
- * The version of the OpenAPI document: 0.63.0
7
+ * The version of the OpenAPI document: 0.64.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/common.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Platform
5
5
  * Manage Your podOS platform
6
6
  *
7
- * The version of the OpenAPI document: 0.63.0
7
+ * The version of the OpenAPI document: 0.64.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/configuration.ts CHANGED
@@ -3,7 +3,7 @@
3
3
  * Platform
4
4
  * Manage Your podOS platform
5
5
  *
6
- * The version of the OpenAPI document: 0.63.0
6
+ * The version of the OpenAPI document: 0.64.0
7
7
  *
8
8
  *
9
9
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/api.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Platform
3
3
  * Manage Your podOS platform
4
4
  *
5
- * The version of the OpenAPI document: 0.63.0
5
+ * The version of the OpenAPI document: 0.64.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -786,8 +786,24 @@ export interface OrderTracking {
786
786
  'url'?: string;
787
787
  }
788
788
  export interface OrdersResponse {
789
- 'orders'?: Array<Order>;
790
- 'nextPageToken'?: number;
789
+ 'orders': Array<Order>;
790
+ 'meta'?: OrdersResponseMeta;
791
+ 'nextPageToken': number | null;
792
+ }
793
+ /**
794
+ * Object containing metadata about the orders list
795
+ */
796
+ export interface OrdersResponseMeta {
797
+ 'filters': OrdersResponseMetaFilters;
798
+ }
799
+ /**
800
+ * Filters that can be applied to the orders list.
801
+ */
802
+ export interface OrdersResponseMetaFilters {
803
+ /**
804
+ * Sources that can be used to filter the orders list, such as Website, Shopify, or Etsy.
805
+ */
806
+ 'sources': Array<string> | null;
791
807
  }
792
808
  export interface Origin {
793
809
  'code'?: string;
package/dist/api.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * Platform
6
6
  * Manage Your podOS platform
7
7
  *
8
- * The version of the OpenAPI document: 0.63.0
8
+ * The version of the OpenAPI document: 0.64.0
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32,29 +32,29 @@ const common_1 = require("./common");
32
32
  const base_1 = require("./base");
33
33
  exports.AmendOrderRequestAmendmentsInnerActionEnum = {
34
34
  Refund: 'refund',
35
- Exchange: 'exchange'
35
+ Exchange: 'exchange',
36
36
  };
37
37
  exports.AmendmentLogAmendmentTypeEnum = {
38
38
  Refund: 'refund',
39
39
  Exchange: 'exchange',
40
- ShippingRefund: 'shipping_refund'
40
+ ShippingRefund: 'shipping_refund',
41
41
  };
42
42
  exports.ApplicationPlacementEnum = {
43
43
  Front: 'front',
44
- Back: 'back'
44
+ Back: 'back',
45
45
  };
46
46
  exports.CreateOrderPaymentMethodTypeEnum = {
47
47
  Card: 'card',
48
48
  Bacs: 'bacs',
49
- Terms: 'terms'
49
+ Terms: 'terms',
50
50
  };
51
51
  exports.CustomsInformationPreRegistrationTypeEnum = {
52
- Ioss: 'IOSS'
52
+ Ioss: 'IOSS',
53
53
  };
54
54
  exports.EnquiryStatusEnum = {
55
55
  New: 'New',
56
56
  Archived: 'Archived',
57
- Priority: 'Priority'
57
+ Priority: 'Priority',
58
58
  };
59
59
  exports.OrderStatus = {
60
60
  New: 'new',
@@ -63,33 +63,33 @@ exports.OrderStatus = {
63
63
  Processing: 'processing',
64
64
  Complete: 'complete',
65
65
  Refunded: 'refunded',
66
- Moderation: 'moderation'
66
+ Moderation: 'moderation',
67
67
  };
68
68
  exports.PaymentAccountMethodEnum = {
69
- Stripe: 'stripe'
69
+ Stripe: 'stripe',
70
70
  };
71
71
  exports.PaymentAttemptPaymentProviderEnum = {
72
72
  Stripe: 'stripe',
73
73
  Paypal: 'paypal',
74
- Wallet: 'wallet'
74
+ Wallet: 'wallet',
75
75
  };
76
76
  exports.PaymentAttemptStatusEnum = {
77
77
  Success: 'success',
78
78
  Failed: 'failed',
79
79
  Pending: 'pending',
80
- Cancelled: 'cancelled'
80
+ Cancelled: 'cancelled',
81
81
  };
82
82
  exports.PriorityLevel = {
83
83
  Standard: 'standard',
84
- Priority: 'priority'
84
+ Priority: 'priority',
85
85
  };
86
86
  exports.ReturnOrderRequestReturnsInnerActionEnum = {
87
87
  Refund: 'refund',
88
- Exchange: 'exchange'
88
+ Exchange: 'exchange',
89
89
  };
90
90
  exports.UpdateModerationItemRequestJudgementEnum = {
91
91
  Approved: 'approved',
92
- Denied: 'denied'
92
+ Denied: 'denied',
93
93
  };
94
94
  /**
95
95
  * CustomersApi - axios parameter creator
@@ -980,11 +980,11 @@ exports.ExportCustomersSortByEnum = {
980
980
  LastPurchased: '+lastPurchased',
981
981
  LastPurchased2: '-lastPurchased',
982
982
  UsedDiscount: '+usedDiscount',
983
- UsedDiscount2: '-usedDiscount'
983
+ UsedDiscount2: '-usedDiscount',
984
984
  };
985
985
  exports.ExportCustomersGenderEnum = {
986
986
  Male: 'male',
987
- Female: 'female'
987
+ Female: 'female',
988
988
  };
989
989
  exports.ListCustomersSortByEnum = {
990
990
  LifetimeValue: '+lifetimeValue',
@@ -996,11 +996,11 @@ exports.ListCustomersSortByEnum = {
996
996
  LastPurchased: '+lastPurchased',
997
997
  LastPurchased2: '-lastPurchased',
998
998
  UsedDiscount: '+usedDiscount',
999
- UsedDiscount2: '-usedDiscount'
999
+ UsedDiscount2: '-usedDiscount',
1000
1000
  };
1001
1001
  exports.ListCustomersGenderEnum = {
1002
1002
  Male: 'male',
1003
- Female: 'female'
1003
+ Female: 'female',
1004
1004
  };
1005
1005
  /**
1006
1006
  * DashboardApi - axios parameter creator
@@ -3258,7 +3258,7 @@ exports.ExportOrdersDateFilterTypeEnum = {
3258
3258
  UpdatedAt: 'updatedAt',
3259
3259
  StatusChangedAt: 'statusChangedAt',
3260
3260
  CompletedAt: 'completedAt',
3261
- RefundedAt: 'refundedAt'
3261
+ RefundedAt: 'refundedAt',
3262
3262
  };
3263
3263
  exports.ListOrdersDateFilterTypeEnum = {
3264
3264
  CreatedAt: 'createdAt',
@@ -3266,11 +3266,11 @@ exports.ListOrdersDateFilterTypeEnum = {
3266
3266
  UpdatedAt: 'updatedAt',
3267
3267
  StatusChangedAt: 'statusChangedAt',
3268
3268
  CompletedAt: 'completedAt',
3269
- RefundedAt: 'refundedAt'
3269
+ RefundedAt: 'refundedAt',
3270
3270
  };
3271
3271
  exports.ListOrdersSortByEnum = {
3272
3272
  CreatedAt: '+createdAt',
3273
- CreatedAt2: '-createdAt'
3273
+ CreatedAt2: '-createdAt',
3274
3274
  };
3275
3275
  /**
3276
3276
  * PaymentApi - axios parameter creator
package/dist/base.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Platform
3
3
  * Manage Your podOS platform
4
4
  *
5
- * The version of the OpenAPI document: 0.63.0
5
+ * The version of the OpenAPI document: 0.64.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/base.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * Platform
6
6
  * Manage Your podOS platform
7
7
  *
8
- * The version of the OpenAPI document: 0.63.0
8
+ * The version of the OpenAPI document: 0.64.0
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/common.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Platform
3
3
  * Manage Your podOS platform
4
4
  *
5
- * The version of the OpenAPI document: 0.63.0
5
+ * The version of the OpenAPI document: 0.64.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/common.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * Platform
6
6
  * Manage Your podOS platform
7
7
  *
8
- * The version of the OpenAPI document: 0.63.0
8
+ * The version of the OpenAPI document: 0.64.0
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Platform
3
3
  * Manage Your podOS platform
4
4
  *
5
- * The version of the OpenAPI document: 0.63.0
5
+ * The version of the OpenAPI document: 0.64.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4,7 +4,7 @@
4
4
  * Platform
5
5
  * Manage Your podOS platform
6
6
  *
7
- * The version of the OpenAPI document: 0.63.0
7
+ * The version of the OpenAPI document: 0.64.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/esm/api.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Platform
3
3
  * Manage Your podOS platform
4
4
  *
5
- * The version of the OpenAPI document: 0.63.0
5
+ * The version of the OpenAPI document: 0.64.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -786,8 +786,24 @@ export interface OrderTracking {
786
786
  'url'?: string;
787
787
  }
788
788
  export interface OrdersResponse {
789
- 'orders'?: Array<Order>;
790
- 'nextPageToken'?: number;
789
+ 'orders': Array<Order>;
790
+ 'meta'?: OrdersResponseMeta;
791
+ 'nextPageToken': number | null;
792
+ }
793
+ /**
794
+ * Object containing metadata about the orders list
795
+ */
796
+ export interface OrdersResponseMeta {
797
+ 'filters': OrdersResponseMetaFilters;
798
+ }
799
+ /**
800
+ * Filters that can be applied to the orders list.
801
+ */
802
+ export interface OrdersResponseMetaFilters {
803
+ /**
804
+ * Sources that can be used to filter the orders list, such as Website, Shopify, or Etsy.
805
+ */
806
+ 'sources': Array<string> | null;
791
807
  }
792
808
  export interface Origin {
793
809
  'code'?: string;
package/dist/esm/api.js CHANGED
@@ -4,7 +4,7 @@
4
4
  * Platform
5
5
  * Manage Your podOS platform
6
6
  *
7
- * The version of the OpenAPI document: 0.63.0
7
+ * The version of the OpenAPI document: 0.64.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -28,29 +28,29 @@ import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setOAuthToObject,
28
28
  import { BASE_PATH, BaseAPI, operationServerMap } from './base';
29
29
  export const AmendOrderRequestAmendmentsInnerActionEnum = {
30
30
  Refund: 'refund',
31
- Exchange: 'exchange'
31
+ Exchange: 'exchange',
32
32
  };
33
33
  export const AmendmentLogAmendmentTypeEnum = {
34
34
  Refund: 'refund',
35
35
  Exchange: 'exchange',
36
- ShippingRefund: 'shipping_refund'
36
+ ShippingRefund: 'shipping_refund',
37
37
  };
38
38
  export const ApplicationPlacementEnum = {
39
39
  Front: 'front',
40
- Back: 'back'
40
+ Back: 'back',
41
41
  };
42
42
  export const CreateOrderPaymentMethodTypeEnum = {
43
43
  Card: 'card',
44
44
  Bacs: 'bacs',
45
- Terms: 'terms'
45
+ Terms: 'terms',
46
46
  };
47
47
  export const CustomsInformationPreRegistrationTypeEnum = {
48
- Ioss: 'IOSS'
48
+ Ioss: 'IOSS',
49
49
  };
50
50
  export const EnquiryStatusEnum = {
51
51
  New: 'New',
52
52
  Archived: 'Archived',
53
- Priority: 'Priority'
53
+ Priority: 'Priority',
54
54
  };
55
55
  export const OrderStatus = {
56
56
  New: 'new',
@@ -59,33 +59,33 @@ export const OrderStatus = {
59
59
  Processing: 'processing',
60
60
  Complete: 'complete',
61
61
  Refunded: 'refunded',
62
- Moderation: 'moderation'
62
+ Moderation: 'moderation',
63
63
  };
64
64
  export const PaymentAccountMethodEnum = {
65
- Stripe: 'stripe'
65
+ Stripe: 'stripe',
66
66
  };
67
67
  export const PaymentAttemptPaymentProviderEnum = {
68
68
  Stripe: 'stripe',
69
69
  Paypal: 'paypal',
70
- Wallet: 'wallet'
70
+ Wallet: 'wallet',
71
71
  };
72
72
  export const PaymentAttemptStatusEnum = {
73
73
  Success: 'success',
74
74
  Failed: 'failed',
75
75
  Pending: 'pending',
76
- Cancelled: 'cancelled'
76
+ Cancelled: 'cancelled',
77
77
  };
78
78
  export const PriorityLevel = {
79
79
  Standard: 'standard',
80
- Priority: 'priority'
80
+ Priority: 'priority',
81
81
  };
82
82
  export const ReturnOrderRequestReturnsInnerActionEnum = {
83
83
  Refund: 'refund',
84
- Exchange: 'exchange'
84
+ Exchange: 'exchange',
85
85
  };
86
86
  export const UpdateModerationItemRequestJudgementEnum = {
87
87
  Approved: 'approved',
88
- Denied: 'denied'
88
+ Denied: 'denied',
89
89
  };
90
90
  /**
91
91
  * CustomersApi - axios parameter creator
@@ -972,11 +972,11 @@ export const ExportCustomersSortByEnum = {
972
972
  LastPurchased: '+lastPurchased',
973
973
  LastPurchased2: '-lastPurchased',
974
974
  UsedDiscount: '+usedDiscount',
975
- UsedDiscount2: '-usedDiscount'
975
+ UsedDiscount2: '-usedDiscount',
976
976
  };
977
977
  export const ExportCustomersGenderEnum = {
978
978
  Male: 'male',
979
- Female: 'female'
979
+ Female: 'female',
980
980
  };
981
981
  export const ListCustomersSortByEnum = {
982
982
  LifetimeValue: '+lifetimeValue',
@@ -988,11 +988,11 @@ export const ListCustomersSortByEnum = {
988
988
  LastPurchased: '+lastPurchased',
989
989
  LastPurchased2: '-lastPurchased',
990
990
  UsedDiscount: '+usedDiscount',
991
- UsedDiscount2: '-usedDiscount'
991
+ UsedDiscount2: '-usedDiscount',
992
992
  };
993
993
  export const ListCustomersGenderEnum = {
994
994
  Male: 'male',
995
- Female: 'female'
995
+ Female: 'female',
996
996
  };
997
997
  /**
998
998
  * DashboardApi - axios parameter creator
@@ -3234,7 +3234,7 @@ export const ExportOrdersDateFilterTypeEnum = {
3234
3234
  UpdatedAt: 'updatedAt',
3235
3235
  StatusChangedAt: 'statusChangedAt',
3236
3236
  CompletedAt: 'completedAt',
3237
- RefundedAt: 'refundedAt'
3237
+ RefundedAt: 'refundedAt',
3238
3238
  };
3239
3239
  export const ListOrdersDateFilterTypeEnum = {
3240
3240
  CreatedAt: 'createdAt',
@@ -3242,11 +3242,11 @@ export const ListOrdersDateFilterTypeEnum = {
3242
3242
  UpdatedAt: 'updatedAt',
3243
3243
  StatusChangedAt: 'statusChangedAt',
3244
3244
  CompletedAt: 'completedAt',
3245
- RefundedAt: 'refundedAt'
3245
+ RefundedAt: 'refundedAt',
3246
3246
  };
3247
3247
  export const ListOrdersSortByEnum = {
3248
3248
  CreatedAt: '+createdAt',
3249
- CreatedAt2: '-createdAt'
3249
+ CreatedAt2: '-createdAt',
3250
3250
  };
3251
3251
  /**
3252
3252
  * PaymentApi - axios parameter creator
@@ -2,7 +2,7 @@
2
2
  * Platform
3
3
  * Manage Your podOS platform
4
4
  *
5
- * The version of the OpenAPI document: 0.63.0
5
+ * The version of the OpenAPI document: 0.64.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/esm/base.js CHANGED
@@ -4,7 +4,7 @@
4
4
  * Platform
5
5
  * Manage Your podOS platform
6
6
  *
7
- * The version of the OpenAPI document: 0.63.0
7
+ * The version of the OpenAPI document: 0.64.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Platform
3
3
  * Manage Your podOS platform
4
4
  *
5
- * The version of the OpenAPI document: 0.63.0
5
+ * The version of the OpenAPI document: 0.64.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4,7 +4,7 @@
4
4
  * Platform
5
5
  * Manage Your podOS platform
6
6
  *
7
- * The version of the OpenAPI document: 0.63.0
7
+ * The version of the OpenAPI document: 0.64.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Platform
3
3
  * Manage Your podOS platform
4
4
  *
5
- * The version of the OpenAPI document: 0.63.0
5
+ * The version of the OpenAPI document: 0.64.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -3,7 +3,7 @@
3
3
  * Platform
4
4
  * Manage Your podOS platform
5
5
  *
6
- * The version of the OpenAPI document: 0.63.0
6
+ * The version of the OpenAPI document: 0.64.0
7
7
  *
8
8
  *
9
9
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Platform
3
3
  * Manage Your podOS platform
4
4
  *
5
- * The version of the OpenAPI document: 0.63.0
5
+ * The version of the OpenAPI document: 0.64.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/esm/index.js CHANGED
@@ -4,7 +4,7 @@
4
4
  * Platform
5
5
  * Manage Your podOS platform
6
6
  *
7
- * The version of the OpenAPI document: 0.63.0
7
+ * The version of the OpenAPI document: 0.64.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/index.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Platform
3
3
  * Manage Your podOS platform
4
4
  *
5
- * The version of the OpenAPI document: 0.63.0
5
+ * The version of the OpenAPI document: 0.64.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/index.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * Platform
6
6
  * Manage Your podOS platform
7
7
  *
8
- * The version of the OpenAPI document: 0.63.0
8
+ * The version of the OpenAPI document: 0.64.0
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,8 +5,9 @@
5
5
 
6
6
  Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
- **orders** | [**Array&lt;Order&gt;**](Order.md) | | [optional] [default to undefined]
9
- **nextPageToken** | **number** | | [optional] [default to undefined]
8
+ **orders** | [**Array&lt;Order&gt;**](Order.md) | | [default to undefined]
9
+ **meta** | [**OrdersResponseMeta**](OrdersResponseMeta.md) | | [optional] [default to undefined]
10
+ **nextPageToken** | **number** | | [default to undefined]
10
11
 
11
12
  ## Example
12
13
 
@@ -15,6 +16,7 @@ import { OrdersResponse } from '@teemill/platform';
15
16
 
16
17
  const instance: OrdersResponse = {
17
18
  orders,
19
+ meta,
18
20
  nextPageToken,
19
21
  };
20
22
  ```
@@ -0,0 +1,21 @@
1
+ # OrdersResponseMeta
2
+
3
+ Object containing metadata about the orders list
4
+
5
+ ## Properties
6
+
7
+ Name | Type | Description | Notes
8
+ ------------ | ------------- | ------------- | -------------
9
+ **filters** | [**OrdersResponseMetaFilters**](OrdersResponseMetaFilters.md) | | [default to undefined]
10
+
11
+ ## Example
12
+
13
+ ```typescript
14
+ import { OrdersResponseMeta } from '@teemill/platform';
15
+
16
+ const instance: OrdersResponseMeta = {
17
+ filters,
18
+ };
19
+ ```
20
+
21
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,21 @@
1
+ # OrdersResponseMetaFilters
2
+
3
+ Filters that can be applied to the orders list.
4
+
5
+ ## Properties
6
+
7
+ Name | Type | Description | Notes
8
+ ------------ | ------------- | ------------- | -------------
9
+ **sources** | **Array&lt;string&gt;** | Sources that can be used to filter the orders list, such as Website, Shopify, or Etsy. | [default to undefined]
10
+
11
+ ## Example
12
+
13
+ ```typescript
14
+ import { OrdersResponseMetaFilters } from '@teemill/platform';
15
+
16
+ const instance: OrdersResponseMetaFilters = {
17
+ sources,
18
+ };
19
+ ```
20
+
21
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
package/index.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Platform
5
5
  * Manage Your podOS platform
6
6
  *
7
- * The version of the OpenAPI document: 0.63.0
7
+ * The version of the OpenAPI document: 0.64.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teemill/platform",
3
- "version": "0.63.0",
3
+ "version": "0.64.0",
4
4
  "description": "OpenAPI client for @teemill/platform",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {