@infisale-client/api 1.2.19 → 1.2.20

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/dist/api/api.d.ts CHANGED
@@ -1907,6 +1907,18 @@ export interface ICompany {
1907
1907
  * @memberof ICompany
1908
1908
  */
1909
1909
  'description'?: string;
1910
+ /**
1911
+ *
1912
+ * @type {string}
1913
+ * @memberof ICompany
1914
+ */
1915
+ 'orderNoPrefix'?: string;
1916
+ /**
1917
+ *
1918
+ * @type {string}
1919
+ * @memberof ICompany
1920
+ */
1921
+ 'orderNoSuffix'?: string;
1910
1922
  /**
1911
1923
  *
1912
1924
  * @type {ICompanyConfig}
@@ -2152,6 +2164,18 @@ export interface ICompanyAdminResponse {
2152
2164
  * @memberof ICompanyAdminResponse
2153
2165
  */
2154
2166
  'description'?: string;
2167
+ /**
2168
+ *
2169
+ * @type {string}
2170
+ * @memberof ICompanyAdminResponse
2171
+ */
2172
+ 'orderNoPrefix'?: string;
2173
+ /**
2174
+ *
2175
+ * @type {string}
2176
+ * @memberof ICompanyAdminResponse
2177
+ */
2178
+ 'orderNoSuffix'?: string;
2155
2179
  /**
2156
2180
  *
2157
2181
  * @type {IImage}
@@ -2703,6 +2727,18 @@ export interface ICompanyPatchRequest {
2703
2727
  * @memberof ICompanyPatchRequest
2704
2728
  */
2705
2729
  'description'?: string;
2730
+ /**
2731
+ *
2732
+ * @type {string}
2733
+ * @memberof ICompanyPatchRequest
2734
+ */
2735
+ 'orderNoPrefix'?: string;
2736
+ /**
2737
+ *
2738
+ * @type {string}
2739
+ * @memberof ICompanyPatchRequest
2740
+ */
2741
+ 'orderNoSuffix'?: string;
2706
2742
  /**
2707
2743
  *
2708
2744
  * @type {IImage}
@@ -2905,6 +2941,18 @@ export interface ICompanyResponse {
2905
2941
  * @memberof ICompanyResponse
2906
2942
  */
2907
2943
  'description'?: string;
2944
+ /**
2945
+ *
2946
+ * @type {string}
2947
+ * @memberof ICompanyResponse
2948
+ */
2949
+ 'orderNoPrefix'?: string;
2950
+ /**
2951
+ *
2952
+ * @type {string}
2953
+ * @memberof ICompanyResponse
2954
+ */
2955
+ 'orderNoSuffix'?: string;
2908
2956
  /**
2909
2957
  *
2910
2958
  * @type {IImage}
@@ -4989,6 +5037,12 @@ export interface IOrderResponse {
4989
5037
  * @memberof IOrderResponse
4990
5038
  */
4991
5039
  'email'?: string;
5040
+ /**
5041
+ *
5042
+ * @type {number}
5043
+ * @memberof IOrderResponse
5044
+ */
5045
+ 'number'?: number;
4992
5046
  /**
4993
5047
  *
4994
5048
  * @type {Array<IOrderResponseProductsInner>}
@@ -5104,6 +5158,12 @@ export interface IOrderResponseProductsInner {
5104
5158
  * @memberof IOrderResponseProductsInner
5105
5159
  */
5106
5160
  'mainVariantTitle'?: PartialRecordLanguageEnumString;
5161
+ /**
5162
+ *
5163
+ * @type {PartialRecordLanguageEnumString}
5164
+ * @memberof IOrderResponseProductsInner
5165
+ */
5166
+ 'productSlug'?: PartialRecordLanguageEnumString;
5107
5167
  /**
5108
5168
  *
5109
5169
  * @type {string}
@@ -7558,7 +7618,8 @@ export declare const OrderStatusEnum: {
7558
7618
  readonly WAITING_PAYMENT: "waiting_payment";
7559
7619
  readonly PAID: "paid";
7560
7620
  readonly CANCELED: "canceled";
7561
- readonly DELIVERED: "delivered";
7621
+ readonly READY_TO_SHIP: "ready_to_ship";
7622
+ readonly SHIPPED: "shipped";
7562
7623
  readonly COMPLETED: "completed";
7563
7624
  };
7564
7625
  export type OrderStatusEnum = typeof OrderStatusEnum[keyof typeof OrderStatusEnum];
@@ -8026,6 +8087,18 @@ export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys {
8026
8087
  * @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
8027
8088
  */
8028
8089
  'description'?: string;
8090
+ /**
8091
+ *
8092
+ * @type {string}
8093
+ * @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
8094
+ */
8095
+ 'orderNoPrefix'?: string;
8096
+ /**
8097
+ *
8098
+ * @type {string}
8099
+ * @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
8100
+ */
8101
+ 'orderNoSuffix'?: string;
8029
8102
  /**
8030
8103
  *
8031
8104
  * @type {IImage}
package/dist/api/api.js CHANGED
@@ -542,7 +542,8 @@ exports.OrderStatusEnum = {
542
542
  WAITING_PAYMENT: 'waiting_payment',
543
543
  PAID: 'paid',
544
544
  CANCELED: 'canceled',
545
- DELIVERED: 'delivered',
545
+ READY_TO_SHIP: 'ready_to_ship',
546
+ SHIPPED: 'shipped',
546
547
  COMPLETED: 'completed'
547
548
  };
548
549
  /**
package/dist/api/api.mjs CHANGED
@@ -531,7 +531,8 @@ export const OrderStatusEnum = {
531
531
  WAITING_PAYMENT: 'waiting_payment',
532
532
  PAID: 'paid',
533
533
  CANCELED: 'canceled',
534
- DELIVERED: 'delivered',
534
+ READY_TO_SHIP: 'ready_to_ship',
535
+ SHIPPED: 'shipped',
535
536
  COMPLETED: 'completed'
536
537
  };
537
538
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@infisale-client/api",
3
- "version": "1.2.19",
3
+ "version": "1.2.20",
4
4
  "description": "api-sdk",
5
5
  "author": "Muhammet KÖKLÜ <105980019+byhipernova@users.noreply.github.com>",
6
6
  "homepage": "https://github.com/infisale/infisale-client#readme",
@@ -37,5 +37,5 @@
37
37
  "bugs": {
38
38
  "url": "https://github.com/infisale/infisale-client/issues"
39
39
  },
40
- "gitHead": "8d87b661880e9f1424f12cd42f5a41d292d477fb"
40
+ "gitHead": "37636ed06f738d6dd2dea1ad874c60d920afddfd"
41
41
  }