@infisale-client/api-client 1.2.95 → 1.2.97

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.
Files changed (2) hide show
  1. package/dist/api/api.d.ts +139 -18
  2. package/package.json +2 -2
package/dist/api/api.d.ts CHANGED
@@ -2223,6 +2223,14 @@ export interface ICompany {
2223
2223
  * @memberof ICompany
2224
2224
  */
2225
2225
  'policyPages': PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysPolicyPages;
2226
+ /**
2227
+ * Construct a type with a set of properties K of type T
2228
+ * @type {{ [key: string]: RecordStringUrlStringFileIImageValue; }}
2229
+ * @memberof ICompany
2230
+ */
2231
+ 'legalDocuments': {
2232
+ [key: string]: RecordStringUrlStringFileIImageValue;
2233
+ };
2226
2234
  /**
2227
2235
  *
2228
2236
  * @type {CompanyStatusEnum}
@@ -2442,6 +2450,14 @@ export interface ICompanyAdminResponse {
2442
2450
  * @memberof ICompanyAdminResponse
2443
2451
  */
2444
2452
  'policyPages': PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysPolicyPages;
2453
+ /**
2454
+ * Construct a type with a set of properties K of type T
2455
+ * @type {{ [key: string]: RecordStringUrlStringFileIImageValue; }}
2456
+ * @memberof ICompanyAdminResponse
2457
+ */
2458
+ 'legalDocuments': {
2459
+ [key: string]: RecordStringUrlStringFileIImageValue;
2460
+ };
2445
2461
  /**
2446
2462
  *
2447
2463
  * @type {string}
@@ -2892,6 +2908,14 @@ export interface ICompanyPatchRequest {
2892
2908
  * @memberof ICompanyPatchRequest
2893
2909
  */
2894
2910
  'policyPages'?: PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysPolicyPages;
2911
+ /**
2912
+ * Construct a type with a set of properties K of type T
2913
+ * @type {{ [key: string]: RecordStringUrlStringFileIImageValue; }}
2914
+ * @memberof ICompanyPatchRequest
2915
+ */
2916
+ 'legalDocuments'?: {
2917
+ [key: string]: RecordStringUrlStringFileIImageValue;
2918
+ };
2895
2919
  /**
2896
2920
  *
2897
2921
  * @type {string}
@@ -3210,6 +3234,14 @@ export interface ICompanyResponse {
3210
3234
  * @memberof ICompanyResponse
3211
3235
  */
3212
3236
  'policyPages': PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysPolicyPages;
3237
+ /**
3238
+ * Construct a type with a set of properties K of type T
3239
+ * @type {{ [key: string]: RecordStringUrlStringFileIImageValue; }}
3240
+ * @memberof ICompanyResponse
3241
+ */
3242
+ 'legalDocuments': {
3243
+ [key: string]: RecordStringUrlStringFileIImageValue;
3244
+ };
3213
3245
  /**
3214
3246
  *
3215
3247
  * @type {string}
@@ -5206,24 +5238,6 @@ export interface IOrderPatchRequest {
5206
5238
  * @memberof IOrderPatchRequest
5207
5239
  */
5208
5240
  'paymentStatus'?: OrderPaymentStatusEnum;
5209
- /**
5210
- *
5211
- * @type {string}
5212
- * @memberof IOrderPatchRequest
5213
- */
5214
- 'cargoCode'?: string;
5215
- /**
5216
- *
5217
- * @type {string}
5218
- * @memberof IOrderPatchRequest
5219
- */
5220
- 'cargoUrl'?: string;
5221
- /**
5222
- *
5223
- * @type {Array<PickIOrderExcludeKeyofIOrderHtmlOrIframeShippedInner>}
5224
- * @memberof IOrderPatchRequest
5225
- */
5226
- 'shipped'?: Array<PickIOrderExcludeKeyofIOrderHtmlOrIframeShippedInner>;
5227
5241
  }
5228
5242
  /**
5229
5243
  *
@@ -5658,6 +5672,80 @@ export interface IOrderReviewPostRequest {
5658
5672
  */
5659
5673
  'comment': string;
5660
5674
  }
5675
+ /**
5676
+ *
5677
+ * @export
5678
+ * @interface IOrderShippedPostRequest
5679
+ */
5680
+ export interface IOrderShippedPostRequest {
5681
+ /**
5682
+ *
5683
+ * @type {Array<PickIOrderExcludeKeyofIOrderHtmlOrIframeReturnsInnerProductsInner>}
5684
+ * @memberof IOrderShippedPostRequest
5685
+ */
5686
+ 'products': Array<PickIOrderExcludeKeyofIOrderHtmlOrIframeReturnsInnerProductsInner>;
5687
+ /**
5688
+ *
5689
+ * @type {string}
5690
+ * @memberof IOrderShippedPostRequest
5691
+ */
5692
+ 'cargoCode'?: string;
5693
+ /**
5694
+ *
5695
+ * @type {string}
5696
+ * @memberof IOrderShippedPostRequest
5697
+ */
5698
+ 'cargoUrl'?: string;
5699
+ /**
5700
+ *
5701
+ * @type {string}
5702
+ * @memberof IOrderShippedPostRequest
5703
+ */
5704
+ 'warehouse'?: string;
5705
+ /**
5706
+ *
5707
+ * @type {string}
5708
+ * @memberof IOrderShippedPostRequest
5709
+ */
5710
+ 'note'?: string;
5711
+ }
5712
+ /**
5713
+ *
5714
+ * @export
5715
+ * @interface IOrderShippedUpdatePatchRequest
5716
+ */
5717
+ export interface IOrderShippedUpdatePatchRequest {
5718
+ /**
5719
+ *
5720
+ * @type {string}
5721
+ * @memberof IOrderShippedUpdatePatchRequest
5722
+ */
5723
+ 'cargoCode'?: string;
5724
+ /**
5725
+ *
5726
+ * @type {string}
5727
+ * @memberof IOrderShippedUpdatePatchRequest
5728
+ */
5729
+ 'cargoUrl'?: string;
5730
+ /**
5731
+ *
5732
+ * @type {string}
5733
+ * @memberof IOrderShippedUpdatePatchRequest
5734
+ */
5735
+ 'warehouse'?: string;
5736
+ /**
5737
+ *
5738
+ * @type {string}
5739
+ * @memberof IOrderShippedUpdatePatchRequest
5740
+ */
5741
+ 'note'?: string;
5742
+ /**
5743
+ *
5744
+ * @type {OrderShippedStatusEnum}
5745
+ * @memberof IOrderShippedUpdatePatchRequest
5746
+ */
5747
+ 'status'?: OrderShippedStatusEnum;
5748
+ }
5661
5749
  /**
5662
5750
  *
5663
5751
  * @export
@@ -7860,6 +7948,12 @@ export interface ITemplateResponseComponentsInnerBlogs {
7860
7948
  * @interface ITemplateResponseComponentsInnerConfig
7861
7949
  */
7862
7950
  export interface ITemplateResponseComponentsInnerConfig {
7951
+ /**
7952
+ *
7953
+ * @type {boolean}
7954
+ * @memberof ITemplateResponseComponentsInnerConfig
7955
+ */
7956
+ 'legalDocuments'?: boolean;
7863
7957
  /**
7864
7958
  *
7865
7959
  * @type {boolean}
@@ -9654,6 +9748,14 @@ export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys {
9654
9748
  * @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
9655
9749
  */
9656
9750
  'policyPages': PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeysPolicyPages;
9751
+ /**
9752
+ * Construct a type with a set of properties K of type T
9753
+ * @type {{ [key: string]: RecordStringUrlStringFileIImageValue; }}
9754
+ * @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
9755
+ */
9756
+ 'legalDocuments': {
9757
+ [key: string]: RecordStringUrlStringFileIImageValue;
9758
+ };
9657
9759
  /**
9658
9760
  *
9659
9761
  * @type {string}
@@ -11579,6 +11681,25 @@ export interface RecordLanguageEnumTitleStringTr {
11579
11681
  */
11580
11682
  'title': string;
11581
11683
  }
11684
+ /**
11685
+ *
11686
+ * @export
11687
+ * @interface RecordStringUrlStringFileIImageValue
11688
+ */
11689
+ export interface RecordStringUrlStringFileIImageValue {
11690
+ /**
11691
+ *
11692
+ * @type {IImage}
11693
+ * @memberof RecordStringUrlStringFileIImageValue
11694
+ */
11695
+ 'file': IImage;
11696
+ /**
11697
+ *
11698
+ * @type {string}
11699
+ * @memberof RecordStringUrlStringFileIImageValue
11700
+ */
11701
+ 'url': string;
11702
+ }
11582
11703
  /**
11583
11704
  *
11584
11705
  * @export
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@infisale-client/api-client",
3
- "version": "1.2.95",
3
+ "version": "1.2.97",
4
4
  "description": "api-client-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": "d94b2a176c4521a784286691124e6e3a2bf53198"
40
+ "gitHead": "ee17f0fbb87adc3623595e6530b3ca6dd55ae4f4"
41
41
  }