@infisale-client/api 1.3.7 → 1.3.9

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 +145 -57
  2. package/package.json +2 -2
package/dist/api/api.d.ts CHANGED
@@ -2097,6 +2097,12 @@ export interface ICompany {
2097
2097
  * @memberof ICompany
2098
2098
  */
2099
2099
  'dnsZoneDomain'?: string;
2100
+ /**
2101
+ *
2102
+ * @type {PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoString}
2103
+ * @memberof ICompany
2104
+ */
2105
+ 'customPaymentMethods': PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoString;
2100
2106
  /**
2101
2107
  *
2102
2108
  * @type {Array<PickICompanyNameOrDomainsOrIdOrUsersOrLanguageOrOwnerOrRolesUsersInner>}
@@ -2418,6 +2424,12 @@ export interface ICompanyAdminResponse {
2418
2424
  * @memberof ICompanyAdminResponse
2419
2425
  */
2420
2426
  'dnsZoneDomain'?: string;
2427
+ /**
2428
+ *
2429
+ * @type {PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoString}
2430
+ * @memberof ICompanyAdminResponse
2431
+ */
2432
+ 'customPaymentMethods': PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoString;
2421
2433
  /**
2422
2434
  *
2423
2435
  * @type {{ [key: string]: string; }}
@@ -3118,6 +3130,12 @@ export interface ICompanyPatchRequest {
3118
3130
  * @memberof ICompanyPatchRequest
3119
3131
  */
3120
3132
  'dnsZoneDomain'?: string;
3133
+ /**
3134
+ *
3135
+ * @type {PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoString}
3136
+ * @memberof ICompanyPatchRequest
3137
+ */
3138
+ 'customPaymentMethods'?: PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoString;
3121
3139
  /**
3122
3140
  *
3123
3141
  * @type {{ [key: string]: string; }}
@@ -3457,6 +3475,12 @@ export interface ICompanyResponse {
3457
3475
  * @memberof ICompanyResponse
3458
3476
  */
3459
3477
  'dnsZoneDomain'?: string;
3478
+ /**
3479
+ *
3480
+ * @type {PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoString}
3481
+ * @memberof ICompanyResponse
3482
+ */
3483
+ 'customPaymentMethods': PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoString;
3460
3484
  /**
3461
3485
  *
3462
3486
  * @type {{ [key: string]: string; }}
@@ -5576,6 +5600,12 @@ export interface IOrderCreateResponse {
5576
5600
  * @memberof IOrderCreateResponse
5577
5601
  */
5578
5602
  'redirectUrl'?: string;
5603
+ /**
5604
+ *
5605
+ * @type {string}
5606
+ * @memberof IOrderCreateResponse
5607
+ */
5608
+ 'orderId'?: string;
5579
5609
  }
5580
5610
  /**
5581
5611
  *
@@ -5764,7 +5794,7 @@ export interface IOrderResponse {
5764
5794
  * @type {PaymentGatewayEnum}
5765
5795
  * @memberof IOrderResponse
5766
5796
  */
5767
- 'paymentGateway': PaymentGatewayEnum;
5797
+ 'paymentGateway'?: PaymentGatewayEnum;
5768
5798
  /**
5769
5799
  *
5770
5800
  * @type {string}
@@ -8517,12 +8547,6 @@ export interface IThemeCloneRequest {
8517
8547
  * @interface IThemePatchRequest
8518
8548
  */
8519
8549
  export interface IThemePatchRequest {
8520
- /**
8521
- *
8522
- * @type {IThemeResponseTemplate}
8523
- * @memberof IThemePatchRequest
8524
- */
8525
- 'template'?: IThemeResponseTemplate;
8526
8550
  /**
8527
8551
  *
8528
8552
  * @type {string}
@@ -8543,6 +8567,14 @@ export interface IThemePatchRequest {
8543
8567
  'config'?: {
8544
8568
  [key: string]: any;
8545
8569
  };
8570
+ /**
8571
+ * Make all properties in T optional
8572
+ * @type {{ [key: string]: PartialRecordStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue; }}
8573
+ * @memberof IThemePatchRequest
8574
+ */
8575
+ 'groups'?: {
8576
+ [key: string]: PartialRecordStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue;
8577
+ };
8546
8578
  /**
8547
8579
  *
8548
8580
  * @type {string}
@@ -8588,6 +8620,14 @@ export interface IThemePostRequest {
8588
8620
  'config': {
8589
8621
  [key: string]: any;
8590
8622
  };
8623
+ /**
8624
+ * Make all properties in T optional
8625
+ * @type {{ [key: string]: PartialRecordStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue; }}
8626
+ * @memberof IThemePostRequest
8627
+ */
8628
+ 'groups': {
8629
+ [key: string]: PartialRecordStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue;
8630
+ };
8591
8631
  /**
8592
8632
  *
8593
8633
  * @type {string}
@@ -8606,12 +8646,6 @@ export interface IThemePostRequest {
8606
8646
  * @memberof IThemePostRequest
8607
8647
  */
8608
8648
  'assetVersion': number;
8609
- /**
8610
- *
8611
- * @type {IThemeResponseTemplate}
8612
- * @memberof IThemePostRequest
8613
- */
8614
- 'template': IThemeResponseTemplate;
8615
8649
  }
8616
8650
  /**
8617
8651
  *
@@ -8688,11 +8722,13 @@ export interface IThemeResponse {
8688
8722
  */
8689
8723
  'creator'?: string;
8690
8724
  /**
8691
- *
8692
- * @type {IThemeResponseTemplate}
8725
+ * Make all properties in T optional
8726
+ * @type {{ [key: string]: PartialRecordStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue; }}
8693
8727
  * @memberof IThemeResponse
8694
8728
  */
8695
- 'template': IThemeResponseTemplate;
8729
+ 'groups': {
8730
+ [key: string]: PartialRecordStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue;
8731
+ };
8696
8732
  /**
8697
8733
  * Construct a type with a set of properties K of type T
8698
8734
  * @type {{ [key: string]: any; }}
@@ -8714,25 +8750,6 @@ export interface IThemeResponse {
8714
8750
  */
8715
8751
  'assetVersion': number;
8716
8752
  }
8717
- /**
8718
- *
8719
- * @export
8720
- * @interface IThemeResponseTemplate
8721
- */
8722
- export interface IThemeResponseTemplate {
8723
- /**
8724
- *
8725
- * @type {PartialRecordLanguageEnumITemplateComponentResponseArray}
8726
- * @memberof IThemeResponseTemplate
8727
- */
8728
- 'footer': PartialRecordLanguageEnumITemplateComponentResponseArray;
8729
- /**
8730
- *
8731
- * @type {PartialRecordLanguageEnumITemplateComponentResponseArray}
8732
- * @memberof IThemeResponseTemplate
8733
- */
8734
- 'header': PartialRecordLanguageEnumITemplateComponentResponseArray;
8735
- }
8736
8753
  /**
8737
8754
  *
8738
8755
  * @export
@@ -9225,6 +9242,50 @@ export declare const PageTypeEnum: {
9225
9242
  readonly BLOG_LIST: "blog-list";
9226
9243
  };
9227
9244
  export type PageTypeEnum = typeof PageTypeEnum[keyof typeof PageTypeEnum];
9245
+ /**
9246
+ * Make all properties in T optional
9247
+ * @export
9248
+ * @interface PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoString
9249
+ */
9250
+ export interface PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoString {
9251
+ /**
9252
+ *
9253
+ * @type {PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoStringBankTransfer}
9254
+ * @memberof PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoString
9255
+ */
9256
+ 'bank_transfer'?: PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoStringBankTransfer;
9257
+ /**
9258
+ *
9259
+ * @type {PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoStringBankTransfer}
9260
+ * @memberof PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoString
9261
+ */
9262
+ 'cash_on_delivery'?: PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoStringBankTransfer;
9263
+ /**
9264
+ *
9265
+ * @type {PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoStringBankTransfer}
9266
+ * @memberof PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoString
9267
+ */
9268
+ 'card_on_delivery'?: PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoStringBankTransfer;
9269
+ }
9270
+ /**
9271
+ *
9272
+ * @export
9273
+ * @interface PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoStringBankTransfer
9274
+ */
9275
+ export interface PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoStringBankTransfer {
9276
+ /**
9277
+ *
9278
+ * @type {string}
9279
+ * @memberof PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoStringBankTransfer
9280
+ */
9281
+ 'info': string;
9282
+ /**
9283
+ *
9284
+ * @type {number}
9285
+ * @memberof PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoStringBankTransfer
9286
+ */
9287
+ 'extraFee': number;
9288
+ }
9228
9289
  /**
9229
9290
  * Make all properties in T optional
9230
9291
  * @export
@@ -9325,6 +9386,19 @@ export interface PartialRecordLanguageEnumTitleString {
9325
9386
  */
9326
9387
  'de'?: RecordLanguageEnumTitleStringTr;
9327
9388
  }
9389
+ /**
9390
+ *
9391
+ * @export
9392
+ * @interface PartialRecordStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue
9393
+ */
9394
+ export interface PartialRecordStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue {
9395
+ /**
9396
+ *
9397
+ * @type {PartialRecordLanguageEnumITemplateComponentResponseArray}
9398
+ * @memberof PartialRecordStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue
9399
+ */
9400
+ 'components': PartialRecordLanguageEnumITemplateComponentResponseArray;
9401
+ }
9328
9402
  /**
9329
9403
  *
9330
9404
  * @export
@@ -9812,6 +9886,12 @@ export interface PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys {
9812
9886
  * @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
9813
9887
  */
9814
9888
  'dnsZoneDomain'?: string;
9889
+ /**
9890
+ *
9891
+ * @type {PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoString}
9892
+ * @memberof PickICompanyExcludeKeyofICompanyKeyofICompanyResponseOmitKeys
9893
+ */
9894
+ 'customPaymentMethods': PartialRecordCustomPaymentMethodEnumExtraFeeNumberInfoString;
9815
9895
  /**
9816
9896
  *
9817
9897
  * @type {{ [key: string]: string; }}
@@ -10307,7 +10387,7 @@ export interface PickIOrderExcludeKeyofIOrderHtmlOrIframe {
10307
10387
  * @type {PaymentGatewayEnum}
10308
10388
  * @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframe
10309
10389
  */
10310
- 'paymentGateway': PaymentGatewayEnum;
10390
+ 'paymentGateway'?: PaymentGatewayEnum;
10311
10391
  /**
10312
10392
  *
10313
10393
  * @type {string}
@@ -11199,61 +11279,61 @@ export interface PickITemplateResponseExcludeKeyofITemplateResponseKeyofMongoRes
11199
11279
  /**
11200
11280
  * From T, pick a set of properties whose keys are in the union K
11201
11281
  * @export
11202
- * @interface PickIThemeExcludeKeyofIThemeTemplate
11282
+ * @interface PickIThemeExcludeKeyofIThemeGroups
11203
11283
  */
11204
- export interface PickIThemeExcludeKeyofIThemeTemplate {
11284
+ export interface PickIThemeExcludeKeyofIThemeGroups {
11205
11285
  /**
11206
11286
  *
11207
11287
  * @type {string}
11208
- * @memberof PickIThemeExcludeKeyofIThemeTemplate
11288
+ * @memberof PickIThemeExcludeKeyofIThemeGroups
11209
11289
  */
11210
11290
  'name': string;
11211
11291
  /**
11212
11292
  *
11213
11293
  * @type {string}
11214
- * @memberof PickIThemeExcludeKeyofIThemeTemplate
11294
+ * @memberof PickIThemeExcludeKeyofIThemeGroups
11215
11295
  */
11216
11296
  'company'?: string;
11217
11297
  /**
11218
11298
  *
11219
11299
  * @type {string}
11220
- * @memberof PickIThemeExcludeKeyofIThemeTemplate
11300
+ * @memberof PickIThemeExcludeKeyofIThemeGroups
11221
11301
  */
11222
11302
  '_id': string;
11223
11303
  /**
11224
11304
  *
11225
11305
  * @type {number}
11226
- * @memberof PickIThemeExcludeKeyofIThemeTemplate
11306
+ * @memberof PickIThemeExcludeKeyofIThemeGroups
11227
11307
  */
11228
11308
  '__v': number;
11229
11309
  /**
11230
11310
  *
11231
11311
  * @type {string}
11232
- * @memberof PickIThemeExcludeKeyofIThemeTemplate
11312
+ * @memberof PickIThemeExcludeKeyofIThemeGroups
11233
11313
  */
11234
11314
  'createdAt': string;
11235
11315
  /**
11236
11316
  *
11237
11317
  * @type {string}
11238
- * @memberof PickIThemeExcludeKeyofIThemeTemplate
11318
+ * @memberof PickIThemeExcludeKeyofIThemeGroups
11239
11319
  */
11240
11320
  'updatedAt': string;
11241
11321
  /**
11242
11322
  *
11243
11323
  * @type {IImage}
11244
- * @memberof PickIThemeExcludeKeyofIThemeTemplate
11324
+ * @memberof PickIThemeExcludeKeyofIThemeGroups
11245
11325
  */
11246
11326
  'thumbnail'?: IImage;
11247
11327
  /**
11248
11328
  *
11249
11329
  * @type {string}
11250
- * @memberof PickIThemeExcludeKeyofIThemeTemplate
11330
+ * @memberof PickIThemeExcludeKeyofIThemeGroups
11251
11331
  */
11252
11332
  'main'?: string;
11253
11333
  /**
11254
11334
  * Construct a type with a set of properties K of type T
11255
11335
  * @type {{ [key: string]: any; }}
11256
- * @memberof PickIThemeExcludeKeyofIThemeTemplate
11336
+ * @memberof PickIThemeExcludeKeyofIThemeGroups
11257
11337
  */
11258
11338
  'config': {
11259
11339
  [key: string]: any;
@@ -11261,58 +11341,66 @@ export interface PickIThemeExcludeKeyofIThemeTemplate {
11261
11341
  /**
11262
11342
  *
11263
11343
  * @type {string}
11264
- * @memberof PickIThemeExcludeKeyofIThemeTemplate
11344
+ * @memberof PickIThemeExcludeKeyofIThemeGroups
11265
11345
  */
11266
11346
  'demoUrl'?: string;
11267
11347
  /**
11268
11348
  *
11269
11349
  * @type {string}
11270
- * @memberof PickIThemeExcludeKeyofIThemeTemplate
11350
+ * @memberof PickIThemeExcludeKeyofIThemeGroups
11271
11351
  */
11272
11352
  'creator'?: string;
11273
11353
  }
11274
11354
  /**
11275
11355
  * From T, pick a set of properties whose keys are in the union K
11276
11356
  * @export
11277
- * @interface PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrTemplateOrMainOrCompanyOrCreatorOrFiles
11357
+ * @interface PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrMainOrCompanyOrCreatorOrFiles
11278
11358
  */
11279
- export interface PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrTemplateOrMainOrCompanyOrCreatorOrFiles {
11359
+ export interface PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrMainOrCompanyOrCreatorOrFiles {
11280
11360
  /**
11281
11361
  *
11282
11362
  * @type {string}
11283
- * @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrTemplateOrMainOrCompanyOrCreatorOrFiles
11363
+ * @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrMainOrCompanyOrCreatorOrFiles
11284
11364
  */
11285
11365
  'name': string;
11286
11366
  /**
11287
11367
  *
11288
11368
  * @type {IImage}
11289
- * @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrTemplateOrMainOrCompanyOrCreatorOrFiles
11369
+ * @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrMainOrCompanyOrCreatorOrFiles
11290
11370
  */
11291
11371
  'thumbnail'?: IImage;
11292
11372
  /**
11293
11373
  * Construct a type with a set of properties K of type T
11294
11374
  * @type {{ [key: string]: any; }}
11295
- * @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrTemplateOrMainOrCompanyOrCreatorOrFiles
11375
+ * @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrMainOrCompanyOrCreatorOrFiles
11296
11376
  */
11297
11377
  'config': {
11298
11378
  [key: string]: any;
11299
11379
  };
11380
+ /**
11381
+ * Make all properties in T optional
11382
+ * @type {{ [key: string]: PartialRecordStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue; }}
11383
+ * @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrMainOrCompanyOrCreatorOrFiles
11384
+ */
11385
+ 'groups': {
11386
+ [key: string]: PartialRecordStringComponentsPartialRecordLanguageEnumITemplateComponentResponseArrayValue;
11387
+ };
11300
11388
  /**
11301
11389
  *
11302
11390
  * @type {string}
11303
- * @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrTemplateOrMainOrCompanyOrCreatorOrFiles
11391
+ * @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrMainOrCompanyOrCreatorOrFiles
11304
11392
  */
11305
11393
  'demoUrl'?: string;
11306
11394
  /**
11307
11395
  *
11308
11396
  * @type {string}
11309
- * @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrTemplateOrMainOrCompanyOrCreatorOrFiles
11397
+ * @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrMainOrCompanyOrCreatorOrFiles
11310
11398
  */
11311
11399
  'assetUrl': string;
11312
11400
  /**
11313
11401
  *
11314
11402
  * @type {number}
11315
- * @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrTemplateOrMainOrCompanyOrCreatorOrFiles
11403
+ * @memberof PickIThemeResponseExcludeKeyofIThemeResponseKeyofMongoResponseOrMainOrCompanyOrCreatorOrFiles
11316
11404
  */
11317
11405
  'assetVersion': number;
11318
11406
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@infisale-client/api",
3
- "version": "1.3.7",
3
+ "version": "1.3.9",
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": "9237476390354933f923585b27254e8379d305df"
40
+ "gitHead": "01c659b6663e174a2ee6a0b43d074df8e8c530ac"
41
41
  }