@ember-home/unbound-ts-client 0.0.127 → 0.0.129
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/index.d.mts +291 -174
- package/dist/index.d.ts +291 -174
- package/dist/index.js +144 -143
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +144 -143
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -373,6 +373,49 @@ interface AddressProviderAddressesProviderAttribution {
|
|
|
373
373
|
*/
|
|
374
374
|
'channels': Array<ReservationChannelTypes>;
|
|
375
375
|
}
|
|
376
|
+
/**
|
|
377
|
+
*
|
|
378
|
+
* @export
|
|
379
|
+
* @interface AddressUpdate
|
|
380
|
+
*/
|
|
381
|
+
interface AddressUpdate {
|
|
382
|
+
/**
|
|
383
|
+
*
|
|
384
|
+
* @type {string}
|
|
385
|
+
* @memberof AddressUpdate
|
|
386
|
+
*/
|
|
387
|
+
'street1'?: string | null;
|
|
388
|
+
/**
|
|
389
|
+
*
|
|
390
|
+
* @type {string}
|
|
391
|
+
* @memberof AddressUpdate
|
|
392
|
+
*/
|
|
393
|
+
'street2'?: string | null;
|
|
394
|
+
/**
|
|
395
|
+
*
|
|
396
|
+
* @type {string}
|
|
397
|
+
* @memberof AddressUpdate
|
|
398
|
+
*/
|
|
399
|
+
'country'?: string | null;
|
|
400
|
+
/**
|
|
401
|
+
*
|
|
402
|
+
* @type {string}
|
|
403
|
+
* @memberof AddressUpdate
|
|
404
|
+
*/
|
|
405
|
+
'locality'?: string | null;
|
|
406
|
+
/**
|
|
407
|
+
*
|
|
408
|
+
* @type {string}
|
|
409
|
+
* @memberof AddressUpdate
|
|
410
|
+
*/
|
|
411
|
+
'postalCode'?: string | null;
|
|
412
|
+
/**
|
|
413
|
+
*
|
|
414
|
+
* @type {string}
|
|
415
|
+
* @memberof AddressUpdate
|
|
416
|
+
*/
|
|
417
|
+
'region'?: string | null;
|
|
418
|
+
}
|
|
376
419
|
/**
|
|
377
420
|
*
|
|
378
421
|
* @export
|
|
@@ -629,6 +672,61 @@ interface Community {
|
|
|
629
672
|
*/
|
|
630
673
|
'updatedAt': string;
|
|
631
674
|
}
|
|
675
|
+
/**
|
|
676
|
+
*
|
|
677
|
+
* @export
|
|
678
|
+
* @interface CommunityCreate
|
|
679
|
+
*/
|
|
680
|
+
interface CommunityCreate {
|
|
681
|
+
/**
|
|
682
|
+
*
|
|
683
|
+
* @type {string}
|
|
684
|
+
* @memberof CommunityCreate
|
|
685
|
+
*/
|
|
686
|
+
'communityTypeId': string;
|
|
687
|
+
/**
|
|
688
|
+
*
|
|
689
|
+
* @type {string}
|
|
690
|
+
* @memberof CommunityCreate
|
|
691
|
+
*/
|
|
692
|
+
'street1'?: string | null;
|
|
693
|
+
/**
|
|
694
|
+
*
|
|
695
|
+
* @type {string}
|
|
696
|
+
* @memberof CommunityCreate
|
|
697
|
+
*/
|
|
698
|
+
'street2'?: string | null;
|
|
699
|
+
/**
|
|
700
|
+
*
|
|
701
|
+
* @type {string}
|
|
702
|
+
* @memberof CommunityCreate
|
|
703
|
+
*/
|
|
704
|
+
'locality'?: string | null;
|
|
705
|
+
/**
|
|
706
|
+
*
|
|
707
|
+
* @type {string}
|
|
708
|
+
* @memberof CommunityCreate
|
|
709
|
+
*/
|
|
710
|
+
'region'?: string | null;
|
|
711
|
+
/**
|
|
712
|
+
*
|
|
713
|
+
* @type {string}
|
|
714
|
+
* @memberof CommunityCreate
|
|
715
|
+
*/
|
|
716
|
+
'country'?: string | null;
|
|
717
|
+
/**
|
|
718
|
+
*
|
|
719
|
+
* @type {string}
|
|
720
|
+
* @memberof CommunityCreate
|
|
721
|
+
*/
|
|
722
|
+
'postalCode'?: string | null;
|
|
723
|
+
/**
|
|
724
|
+
*
|
|
725
|
+
* @type {Array<string>}
|
|
726
|
+
* @memberof CommunityCreate
|
|
727
|
+
*/
|
|
728
|
+
'listingIds'?: Array<string>;
|
|
729
|
+
}
|
|
632
730
|
/**
|
|
633
731
|
*
|
|
634
732
|
* @export
|
|
@@ -692,8 +790,8 @@ interface CommunityTypeList {
|
|
|
692
790
|
* @enum {string}
|
|
693
791
|
*/
|
|
694
792
|
declare const CommunityTypeType: {
|
|
695
|
-
readonly Standard: "
|
|
696
|
-
readonly Custom: "
|
|
793
|
+
readonly Standard: "STANDARD";
|
|
794
|
+
readonly Custom: "CUSTOM";
|
|
697
795
|
};
|
|
698
796
|
type CommunityTypeType = typeof CommunityTypeType[keyof typeof CommunityTypeType];
|
|
699
797
|
/**
|
|
@@ -709,6 +807,67 @@ interface CommunityTypeUpdate {
|
|
|
709
807
|
*/
|
|
710
808
|
'name': string;
|
|
711
809
|
}
|
|
810
|
+
/**
|
|
811
|
+
*
|
|
812
|
+
* @export
|
|
813
|
+
* @interface CommunityUpdate
|
|
814
|
+
*/
|
|
815
|
+
interface CommunityUpdate {
|
|
816
|
+
/**
|
|
817
|
+
*
|
|
818
|
+
* @type {string}
|
|
819
|
+
* @memberof CommunityUpdate
|
|
820
|
+
*/
|
|
821
|
+
'name'?: string | null;
|
|
822
|
+
/**
|
|
823
|
+
*
|
|
824
|
+
* @type {string}
|
|
825
|
+
* @memberof CommunityUpdate
|
|
826
|
+
*/
|
|
827
|
+
'communityTypeId'?: string | null;
|
|
828
|
+
/**
|
|
829
|
+
*
|
|
830
|
+
* @type {string}
|
|
831
|
+
* @memberof CommunityUpdate
|
|
832
|
+
*/
|
|
833
|
+
'street1'?: string | null;
|
|
834
|
+
/**
|
|
835
|
+
*
|
|
836
|
+
* @type {string}
|
|
837
|
+
* @memberof CommunityUpdate
|
|
838
|
+
*/
|
|
839
|
+
'street2'?: string | null;
|
|
840
|
+
/**
|
|
841
|
+
*
|
|
842
|
+
* @type {string}
|
|
843
|
+
* @memberof CommunityUpdate
|
|
844
|
+
*/
|
|
845
|
+
'locality'?: string | null;
|
|
846
|
+
/**
|
|
847
|
+
*
|
|
848
|
+
* @type {string}
|
|
849
|
+
* @memberof CommunityUpdate
|
|
850
|
+
*/
|
|
851
|
+
'region'?: string | null;
|
|
852
|
+
/**
|
|
853
|
+
*
|
|
854
|
+
* @type {string}
|
|
855
|
+
* @memberof CommunityUpdate
|
|
856
|
+
*/
|
|
857
|
+
'country'?: string | null;
|
|
858
|
+
/**
|
|
859
|
+
*
|
|
860
|
+
* @type {string}
|
|
861
|
+
* @memberof CommunityUpdate
|
|
862
|
+
*/
|
|
863
|
+
'postalCode'?: string | null;
|
|
864
|
+
/**
|
|
865
|
+
*
|
|
866
|
+
* @type {Array<string>}
|
|
867
|
+
* @memberof CommunityUpdate
|
|
868
|
+
*/
|
|
869
|
+
'listingIds'?: Array<string> | null;
|
|
870
|
+
}
|
|
712
871
|
/**
|
|
713
872
|
*
|
|
714
873
|
* @export
|
|
@@ -1230,6 +1389,31 @@ interface ContentItem {
|
|
|
1230
1389
|
*/
|
|
1231
1390
|
'contentItemId': string;
|
|
1232
1391
|
}
|
|
1392
|
+
/**
|
|
1393
|
+
*
|
|
1394
|
+
* @export
|
|
1395
|
+
* @interface ContentItemCreate
|
|
1396
|
+
*/
|
|
1397
|
+
interface ContentItemCreate {
|
|
1398
|
+
/**
|
|
1399
|
+
*
|
|
1400
|
+
* @type {string}
|
|
1401
|
+
* @memberof ContentItemCreate
|
|
1402
|
+
*/
|
|
1403
|
+
'title': string;
|
|
1404
|
+
/**
|
|
1405
|
+
*
|
|
1406
|
+
* @type {string}
|
|
1407
|
+
* @memberof ContentItemCreate
|
|
1408
|
+
*/
|
|
1409
|
+
'description': string;
|
|
1410
|
+
/**
|
|
1411
|
+
*
|
|
1412
|
+
* @type {Contenttypedata}
|
|
1413
|
+
* @memberof ContentItemCreate
|
|
1414
|
+
*/
|
|
1415
|
+
'contentTypeData': Contenttypedata;
|
|
1416
|
+
}
|
|
1233
1417
|
/**
|
|
1234
1418
|
*
|
|
1235
1419
|
* @export
|
|
@@ -1618,10 +1802,10 @@ interface Conversation {
|
|
|
1618
1802
|
interface ConversationCreate {
|
|
1619
1803
|
/**
|
|
1620
1804
|
*
|
|
1621
|
-
* @type {
|
|
1805
|
+
* @type {Create}
|
|
1622
1806
|
* @memberof ConversationCreate
|
|
1623
1807
|
*/
|
|
1624
|
-
'conversationTypeData':
|
|
1808
|
+
'conversationTypeData': Create;
|
|
1625
1809
|
}
|
|
1626
1810
|
/**
|
|
1627
1811
|
*
|
|
@@ -1693,20 +1877,30 @@ interface Create {
|
|
|
1693
1877
|
* @type {string}
|
|
1694
1878
|
* @memberof Create
|
|
1695
1879
|
*/
|
|
1696
|
-
'
|
|
1880
|
+
'conversationType': CreateConversationTypeEnum;
|
|
1881
|
+
/**
|
|
1882
|
+
*
|
|
1883
|
+
* @type {Array<ToPhone>}
|
|
1884
|
+
* @memberof Create
|
|
1885
|
+
*/
|
|
1886
|
+
'toPhones': Array<ToPhone>;
|
|
1697
1887
|
/**
|
|
1698
1888
|
*
|
|
1699
1889
|
* @type {string}
|
|
1700
1890
|
* @memberof Create
|
|
1701
1891
|
*/
|
|
1702
|
-
'
|
|
1892
|
+
'managedPhoneId'?: string | null;
|
|
1703
1893
|
/**
|
|
1704
1894
|
*
|
|
1705
|
-
* @type {
|
|
1895
|
+
* @type {string}
|
|
1706
1896
|
* @memberof Create
|
|
1707
1897
|
*/
|
|
1708
|
-
'
|
|
1898
|
+
'providerGroupId'?: string | null;
|
|
1709
1899
|
}
|
|
1900
|
+
declare const CreateConversationTypeEnum: {
|
|
1901
|
+
readonly Text: "TEXT";
|
|
1902
|
+
};
|
|
1903
|
+
type CreateConversationTypeEnum = typeof CreateConversationTypeEnum[keyof typeof CreateConversationTypeEnum];
|
|
1710
1904
|
/**
|
|
1711
1905
|
*
|
|
1712
1906
|
* @export
|
|
@@ -3867,49 +4061,6 @@ declare const ProviderStaffStaffTypeEnum: {
|
|
|
3867
4061
|
readonly ProviderStaff: "PROVIDER_STAFF";
|
|
3868
4062
|
};
|
|
3869
4063
|
type ProviderStaffStaffTypeEnum = typeof ProviderStaffStaffTypeEnum[keyof typeof ProviderStaffStaffTypeEnum];
|
|
3870
|
-
/**
|
|
3871
|
-
*
|
|
3872
|
-
* @export
|
|
3873
|
-
* @interface ProviderUpdate
|
|
3874
|
-
*/
|
|
3875
|
-
interface ProviderUpdate {
|
|
3876
|
-
/**
|
|
3877
|
-
*
|
|
3878
|
-
* @type {string}
|
|
3879
|
-
* @memberof ProviderUpdate
|
|
3880
|
-
*/
|
|
3881
|
-
'providerApiLogin'?: string | null;
|
|
3882
|
-
/**
|
|
3883
|
-
*
|
|
3884
|
-
* @type {string}
|
|
3885
|
-
* @memberof ProviderUpdate
|
|
3886
|
-
*/
|
|
3887
|
-
'providerApiKey'?: string | null;
|
|
3888
|
-
/**
|
|
3889
|
-
*
|
|
3890
|
-
* @type {string}
|
|
3891
|
-
* @memberof ProviderUpdate
|
|
3892
|
-
*/
|
|
3893
|
-
'webhookLogin'?: string | null;
|
|
3894
|
-
/**
|
|
3895
|
-
*
|
|
3896
|
-
* @type {string}
|
|
3897
|
-
* @memberof ProviderUpdate
|
|
3898
|
-
*/
|
|
3899
|
-
'webhookPassword'?: string | null;
|
|
3900
|
-
/**
|
|
3901
|
-
*
|
|
3902
|
-
* @type {string}
|
|
3903
|
-
* @memberof ProviderUpdate
|
|
3904
|
-
*/
|
|
3905
|
-
'testAttr'?: string | null;
|
|
3906
|
-
/**
|
|
3907
|
-
*
|
|
3908
|
-
* @type {string}
|
|
3909
|
-
* @memberof ProviderUpdate
|
|
3910
|
-
*/
|
|
3911
|
-
'name'?: string | null;
|
|
3912
|
-
}
|
|
3913
4064
|
/**
|
|
3914
4065
|
*
|
|
3915
4066
|
* @export
|
|
@@ -4306,41 +4457,6 @@ declare const SMSConversationDataConversationTypeEnum: {
|
|
|
4306
4457
|
readonly Text: "TEXT";
|
|
4307
4458
|
};
|
|
4308
4459
|
type SMSConversationDataConversationTypeEnum = typeof SMSConversationDataConversationTypeEnum[keyof typeof SMSConversationDataConversationTypeEnum];
|
|
4309
|
-
/**
|
|
4310
|
-
*
|
|
4311
|
-
* @export
|
|
4312
|
-
* @interface SMSConversationDataCreate
|
|
4313
|
-
*/
|
|
4314
|
-
interface SMSConversationDataCreate {
|
|
4315
|
-
/**
|
|
4316
|
-
*
|
|
4317
|
-
* @type {string}
|
|
4318
|
-
* @memberof SMSConversationDataCreate
|
|
4319
|
-
*/
|
|
4320
|
-
'conversationType': SMSConversationDataCreateConversationTypeEnum;
|
|
4321
|
-
/**
|
|
4322
|
-
*
|
|
4323
|
-
* @type {Array<ToPhone>}
|
|
4324
|
-
* @memberof SMSConversationDataCreate
|
|
4325
|
-
*/
|
|
4326
|
-
'toPhones': Array<ToPhone>;
|
|
4327
|
-
/**
|
|
4328
|
-
*
|
|
4329
|
-
* @type {string}
|
|
4330
|
-
* @memberof SMSConversationDataCreate
|
|
4331
|
-
*/
|
|
4332
|
-
'managedPhoneId'?: string | null;
|
|
4333
|
-
/**
|
|
4334
|
-
*
|
|
4335
|
-
* @type {string}
|
|
4336
|
-
* @memberof SMSConversationDataCreate
|
|
4337
|
-
*/
|
|
4338
|
-
'providerGroupId'?: string | null;
|
|
4339
|
-
}
|
|
4340
|
-
declare const SMSConversationDataCreateConversationTypeEnum: {
|
|
4341
|
-
readonly Text: "TEXT";
|
|
4342
|
-
};
|
|
4343
|
-
type SMSConversationDataCreateConversationTypeEnum = typeof SMSConversationDataCreateConversationTypeEnum[keyof typeof SMSConversationDataCreateConversationTypeEnum];
|
|
4344
4460
|
/**
|
|
4345
4461
|
*
|
|
4346
4462
|
* @export
|
|
@@ -4503,7 +4619,8 @@ type Sendertypedata = {
|
|
|
4503
4619
|
* @enum {string}
|
|
4504
4620
|
*/
|
|
4505
4621
|
declare const SortBy: {
|
|
4506
|
-
readonly
|
|
4622
|
+
readonly Version: "version";
|
|
4623
|
+
readonly CreatedAt: "created_at";
|
|
4507
4624
|
};
|
|
4508
4625
|
type SortBy = typeof SortBy[keyof typeof SortBy];
|
|
4509
4626
|
/**
|
|
@@ -4773,37 +4890,37 @@ interface Update {
|
|
|
4773
4890
|
* @type {string}
|
|
4774
4891
|
* @memberof Update
|
|
4775
4892
|
*/
|
|
4776
|
-
'
|
|
4893
|
+
'providerApiLogin'?: string | null;
|
|
4777
4894
|
/**
|
|
4778
4895
|
*
|
|
4779
4896
|
* @type {string}
|
|
4780
4897
|
* @memberof Update
|
|
4781
4898
|
*/
|
|
4782
|
-
'
|
|
4899
|
+
'providerApiKey'?: string | null;
|
|
4783
4900
|
/**
|
|
4784
4901
|
*
|
|
4785
4902
|
* @type {string}
|
|
4786
4903
|
* @memberof Update
|
|
4787
4904
|
*/
|
|
4788
|
-
'
|
|
4905
|
+
'webhookLogin'?: string | null;
|
|
4789
4906
|
/**
|
|
4790
4907
|
*
|
|
4791
4908
|
* @type {string}
|
|
4792
4909
|
* @memberof Update
|
|
4793
4910
|
*/
|
|
4794
|
-
'
|
|
4911
|
+
'webhookPassword'?: string | null;
|
|
4795
4912
|
/**
|
|
4796
4913
|
*
|
|
4797
4914
|
* @type {string}
|
|
4798
4915
|
* @memberof Update
|
|
4799
4916
|
*/
|
|
4800
|
-
'
|
|
4917
|
+
'testAttr'?: string | null;
|
|
4801
4918
|
/**
|
|
4802
4919
|
*
|
|
4803
4920
|
* @type {string}
|
|
4804
4921
|
* @memberof Update
|
|
4805
4922
|
*/
|
|
4806
|
-
'
|
|
4923
|
+
'name'?: string | null;
|
|
4807
4924
|
}
|
|
4808
4925
|
/**
|
|
4809
4926
|
*
|
|
@@ -5311,11 +5428,11 @@ declare const CommunitiesApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
5311
5428
|
/**
|
|
5312
5429
|
*
|
|
5313
5430
|
* @summary Communities Create
|
|
5314
|
-
* @param {
|
|
5431
|
+
* @param {CommunityCreate} communityCreate
|
|
5315
5432
|
* @param {*} [options] Override http request option.
|
|
5316
5433
|
* @throws {RequiredError}
|
|
5317
5434
|
*/
|
|
5318
|
-
communitiesCreate: (
|
|
5435
|
+
communitiesCreate: (communityCreate: CommunityCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5319
5436
|
/**
|
|
5320
5437
|
*
|
|
5321
5438
|
* @summary Communities Delete
|
|
@@ -5348,11 +5465,11 @@ declare const CommunitiesApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
5348
5465
|
*
|
|
5349
5466
|
* @summary Communities Update
|
|
5350
5467
|
* @param {string} communityId
|
|
5351
|
-
* @param {
|
|
5468
|
+
* @param {CommunityUpdate} communityUpdate
|
|
5352
5469
|
* @param {*} [options] Override http request option.
|
|
5353
5470
|
* @throws {RequiredError}
|
|
5354
5471
|
*/
|
|
5355
|
-
communitiesUpdate: (communityId: string,
|
|
5472
|
+
communitiesUpdate: (communityId: string, communityUpdate: CommunityUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5356
5473
|
};
|
|
5357
5474
|
/**
|
|
5358
5475
|
* CommunitiesApi - functional programming interface
|
|
@@ -5362,11 +5479,11 @@ declare const CommunitiesApiFp: (configuration?: Configuration) => {
|
|
|
5362
5479
|
/**
|
|
5363
5480
|
*
|
|
5364
5481
|
* @summary Communities Create
|
|
5365
|
-
* @param {
|
|
5482
|
+
* @param {CommunityCreate} communityCreate
|
|
5366
5483
|
* @param {*} [options] Override http request option.
|
|
5367
5484
|
* @throws {RequiredError}
|
|
5368
5485
|
*/
|
|
5369
|
-
communitiesCreate(
|
|
5486
|
+
communitiesCreate(communityCreate: CommunityCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Community>>;
|
|
5370
5487
|
/**
|
|
5371
5488
|
*
|
|
5372
5489
|
* @summary Communities Delete
|
|
@@ -5399,11 +5516,11 @@ declare const CommunitiesApiFp: (configuration?: Configuration) => {
|
|
|
5399
5516
|
*
|
|
5400
5517
|
* @summary Communities Update
|
|
5401
5518
|
* @param {string} communityId
|
|
5402
|
-
* @param {
|
|
5519
|
+
* @param {CommunityUpdate} communityUpdate
|
|
5403
5520
|
* @param {*} [options] Override http request option.
|
|
5404
5521
|
* @throws {RequiredError}
|
|
5405
5522
|
*/
|
|
5406
|
-
communitiesUpdate(communityId: string,
|
|
5523
|
+
communitiesUpdate(communityId: string, communityUpdate: CommunityUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Community>>;
|
|
5407
5524
|
};
|
|
5408
5525
|
/**
|
|
5409
5526
|
* CommunitiesApi - factory interface
|
|
@@ -5413,11 +5530,11 @@ declare const CommunitiesApiFactory: (configuration?: Configuration, basePath?:
|
|
|
5413
5530
|
/**
|
|
5414
5531
|
*
|
|
5415
5532
|
* @summary Communities Create
|
|
5416
|
-
* @param {
|
|
5533
|
+
* @param {CommunityCreate} communityCreate
|
|
5417
5534
|
* @param {*} [options] Override http request option.
|
|
5418
5535
|
* @throws {RequiredError}
|
|
5419
5536
|
*/
|
|
5420
|
-
communitiesCreate(
|
|
5537
|
+
communitiesCreate(communityCreate: CommunityCreate, options?: RawAxiosRequestConfig): AxiosPromise<Community>;
|
|
5421
5538
|
/**
|
|
5422
5539
|
*
|
|
5423
5540
|
* @summary Communities Delete
|
|
@@ -5450,11 +5567,11 @@ declare const CommunitiesApiFactory: (configuration?: Configuration, basePath?:
|
|
|
5450
5567
|
*
|
|
5451
5568
|
* @summary Communities Update
|
|
5452
5569
|
* @param {string} communityId
|
|
5453
|
-
* @param {
|
|
5570
|
+
* @param {CommunityUpdate} communityUpdate
|
|
5454
5571
|
* @param {*} [options] Override http request option.
|
|
5455
5572
|
* @throws {RequiredError}
|
|
5456
5573
|
*/
|
|
5457
|
-
communitiesUpdate(communityId: string,
|
|
5574
|
+
communitiesUpdate(communityId: string, communityUpdate: CommunityUpdate, options?: RawAxiosRequestConfig): AxiosPromise<Community>;
|
|
5458
5575
|
};
|
|
5459
5576
|
/**
|
|
5460
5577
|
* CommunitiesApi - object-oriented interface
|
|
@@ -5466,12 +5583,12 @@ declare class CommunitiesApi extends BaseAPI {
|
|
|
5466
5583
|
/**
|
|
5467
5584
|
*
|
|
5468
5585
|
* @summary Communities Create
|
|
5469
|
-
* @param {
|
|
5586
|
+
* @param {CommunityCreate} communityCreate
|
|
5470
5587
|
* @param {*} [options] Override http request option.
|
|
5471
5588
|
* @throws {RequiredError}
|
|
5472
5589
|
* @memberof CommunitiesApi
|
|
5473
5590
|
*/
|
|
5474
|
-
communitiesCreate(
|
|
5591
|
+
communitiesCreate(communityCreate: CommunityCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<Community, any>>;
|
|
5475
5592
|
/**
|
|
5476
5593
|
*
|
|
5477
5594
|
* @summary Communities Delete
|
|
@@ -5507,12 +5624,12 @@ declare class CommunitiesApi extends BaseAPI {
|
|
|
5507
5624
|
*
|
|
5508
5625
|
* @summary Communities Update
|
|
5509
5626
|
* @param {string} communityId
|
|
5510
|
-
* @param {
|
|
5627
|
+
* @param {CommunityUpdate} communityUpdate
|
|
5511
5628
|
* @param {*} [options] Override http request option.
|
|
5512
5629
|
* @throws {RequiredError}
|
|
5513
5630
|
* @memberof CommunitiesApi
|
|
5514
5631
|
*/
|
|
5515
|
-
communitiesUpdate(communityId: string,
|
|
5632
|
+
communitiesUpdate(communityId: string, communityUpdate: CommunityUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<Community, any>>;
|
|
5516
5633
|
}
|
|
5517
5634
|
/**
|
|
5518
5635
|
* CommunityTypesApi - axios parameter creator
|
|
@@ -5673,11 +5790,11 @@ declare const ContactsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
5673
5790
|
*
|
|
5674
5791
|
* @summary Addresses Update
|
|
5675
5792
|
* @param {string} addressId
|
|
5676
|
-
* @param {
|
|
5793
|
+
* @param {AddressUpdate} addressUpdate
|
|
5677
5794
|
* @param {*} [options] Override http request option.
|
|
5678
5795
|
* @throws {RequiredError}
|
|
5679
5796
|
*/
|
|
5680
|
-
addressesUpdate: (addressId: string,
|
|
5797
|
+
addressesUpdate: (addressId: string, addressUpdate: AddressUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
5681
5798
|
/**
|
|
5682
5799
|
*
|
|
5683
5800
|
* @summary Contacts Create
|
|
@@ -5827,11 +5944,11 @@ declare const ContactsApiFp: (configuration?: Configuration) => {
|
|
|
5827
5944
|
*
|
|
5828
5945
|
* @summary Addresses Update
|
|
5829
5946
|
* @param {string} addressId
|
|
5830
|
-
* @param {
|
|
5947
|
+
* @param {AddressUpdate} addressUpdate
|
|
5831
5948
|
* @param {*} [options] Override http request option.
|
|
5832
5949
|
* @throws {RequiredError}
|
|
5833
5950
|
*/
|
|
5834
|
-
addressesUpdate(addressId: string,
|
|
5951
|
+
addressesUpdate(addressId: string, addressUpdate: AddressUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Address>>;
|
|
5835
5952
|
/**
|
|
5836
5953
|
*
|
|
5837
5954
|
* @summary Contacts Create
|
|
@@ -5981,11 +6098,11 @@ declare const ContactsApiFactory: (configuration?: Configuration, basePath?: str
|
|
|
5981
6098
|
*
|
|
5982
6099
|
* @summary Addresses Update
|
|
5983
6100
|
* @param {string} addressId
|
|
5984
|
-
* @param {
|
|
6101
|
+
* @param {AddressUpdate} addressUpdate
|
|
5985
6102
|
* @param {*} [options] Override http request option.
|
|
5986
6103
|
* @throws {RequiredError}
|
|
5987
6104
|
*/
|
|
5988
|
-
addressesUpdate(addressId: string,
|
|
6105
|
+
addressesUpdate(addressId: string, addressUpdate: AddressUpdate, options?: RawAxiosRequestConfig): AxiosPromise<Address>;
|
|
5989
6106
|
/**
|
|
5990
6107
|
*
|
|
5991
6108
|
* @summary Contacts Create
|
|
@@ -6140,12 +6257,12 @@ declare class ContactsApi extends BaseAPI {
|
|
|
6140
6257
|
*
|
|
6141
6258
|
* @summary Addresses Update
|
|
6142
6259
|
* @param {string} addressId
|
|
6143
|
-
* @param {
|
|
6260
|
+
* @param {AddressUpdate} addressUpdate
|
|
6144
6261
|
* @param {*} [options] Override http request option.
|
|
6145
6262
|
* @throws {RequiredError}
|
|
6146
6263
|
* @memberof ContactsApi
|
|
6147
6264
|
*/
|
|
6148
|
-
addressesUpdate(addressId: string,
|
|
6265
|
+
addressesUpdate(addressId: string, addressUpdate: AddressUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<Address, any>>;
|
|
6149
6266
|
/**
|
|
6150
6267
|
*
|
|
6151
6268
|
* @summary Contacts Create
|
|
@@ -6450,11 +6567,11 @@ declare const ContentItemsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
6450
6567
|
/**
|
|
6451
6568
|
*
|
|
6452
6569
|
* @summary Content Item Create
|
|
6453
|
-
* @param {
|
|
6570
|
+
* @param {ContentItemCreate} contentItemCreate
|
|
6454
6571
|
* @param {*} [options] Override http request option.
|
|
6455
6572
|
* @throws {RequiredError}
|
|
6456
6573
|
*/
|
|
6457
|
-
contentItemsCreate: (
|
|
6574
|
+
contentItemsCreate: (contentItemCreate: ContentItemCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
6458
6575
|
/**
|
|
6459
6576
|
*
|
|
6460
6577
|
* @summary Content Item Delete
|
|
@@ -6533,11 +6650,11 @@ declare const ContentItemsApiFp: (configuration?: Configuration) => {
|
|
|
6533
6650
|
/**
|
|
6534
6651
|
*
|
|
6535
6652
|
* @summary Content Item Create
|
|
6536
|
-
* @param {
|
|
6653
|
+
* @param {ContentItemCreate} contentItemCreate
|
|
6537
6654
|
* @param {*} [options] Override http request option.
|
|
6538
6655
|
* @throws {RequiredError}
|
|
6539
6656
|
*/
|
|
6540
|
-
contentItemsCreate(
|
|
6657
|
+
contentItemsCreate(contentItemCreate: ContentItemCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ContentItem>>;
|
|
6541
6658
|
/**
|
|
6542
6659
|
*
|
|
6543
6660
|
* @summary Content Item Delete
|
|
@@ -6616,11 +6733,11 @@ declare const ContentItemsApiFactory: (configuration?: Configuration, basePath?:
|
|
|
6616
6733
|
/**
|
|
6617
6734
|
*
|
|
6618
6735
|
* @summary Content Item Create
|
|
6619
|
-
* @param {
|
|
6736
|
+
* @param {ContentItemCreate} contentItemCreate
|
|
6620
6737
|
* @param {*} [options] Override http request option.
|
|
6621
6738
|
* @throws {RequiredError}
|
|
6622
6739
|
*/
|
|
6623
|
-
contentItemsCreate(
|
|
6740
|
+
contentItemsCreate(contentItemCreate: ContentItemCreate, options?: RawAxiosRequestConfig): AxiosPromise<ContentItem>;
|
|
6624
6741
|
/**
|
|
6625
6742
|
*
|
|
6626
6743
|
* @summary Content Item Delete
|
|
@@ -6704,12 +6821,12 @@ declare class ContentItemsApi extends BaseAPI {
|
|
|
6704
6821
|
/**
|
|
6705
6822
|
*
|
|
6706
6823
|
* @summary Content Item Create
|
|
6707
|
-
* @param {
|
|
6824
|
+
* @param {ContentItemCreate} contentItemCreate
|
|
6708
6825
|
* @param {*} [options] Override http request option.
|
|
6709
6826
|
* @throws {RequiredError}
|
|
6710
6827
|
* @memberof ContentItemsApi
|
|
6711
6828
|
*/
|
|
6712
|
-
contentItemsCreate(
|
|
6829
|
+
contentItemsCreate(contentItemCreate: ContentItemCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ContentItem, any>>;
|
|
6713
6830
|
/**
|
|
6714
6831
|
*
|
|
6715
6832
|
* @summary Content Item Delete
|
|
@@ -7803,11 +7920,11 @@ declare const ProvidersApiAxiosParamCreator: (configuration?: Configuration) =>
|
|
|
7803
7920
|
*
|
|
7804
7921
|
* @summary Providers Update
|
|
7805
7922
|
* @param {string} providerId
|
|
7806
|
-
* @param {
|
|
7923
|
+
* @param {Update} update
|
|
7807
7924
|
* @param {*} [options] Override http request option.
|
|
7808
7925
|
* @throws {RequiredError}
|
|
7809
7926
|
*/
|
|
7810
|
-
providersUpdate: (providerId: string,
|
|
7927
|
+
providersUpdate: (providerId: string, update: Update, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
7811
7928
|
};
|
|
7812
7929
|
/**
|
|
7813
7930
|
* ProvidersApi - functional programming interface
|
|
@@ -7841,11 +7958,11 @@ declare const ProvidersApiFp: (configuration?: Configuration) => {
|
|
|
7841
7958
|
*
|
|
7842
7959
|
* @summary Providers Update
|
|
7843
7960
|
* @param {string} providerId
|
|
7844
|
-
* @param {
|
|
7961
|
+
* @param {Update} update
|
|
7845
7962
|
* @param {*} [options] Override http request option.
|
|
7846
7963
|
* @throws {RequiredError}
|
|
7847
7964
|
*/
|
|
7848
|
-
providersUpdate(providerId: string,
|
|
7965
|
+
providersUpdate(providerId: string, update: Update, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Provider>>;
|
|
7849
7966
|
};
|
|
7850
7967
|
/**
|
|
7851
7968
|
* ProvidersApi - factory interface
|
|
@@ -7879,11 +7996,11 @@ declare const ProvidersApiFactory: (configuration?: Configuration, basePath?: st
|
|
|
7879
7996
|
*
|
|
7880
7997
|
* @summary Providers Update
|
|
7881
7998
|
* @param {string} providerId
|
|
7882
|
-
* @param {
|
|
7999
|
+
* @param {Update} update
|
|
7883
8000
|
* @param {*} [options] Override http request option.
|
|
7884
8001
|
* @throws {RequiredError}
|
|
7885
8002
|
*/
|
|
7886
|
-
providersUpdate(providerId: string,
|
|
8003
|
+
providersUpdate(providerId: string, update: Update, options?: RawAxiosRequestConfig): AxiosPromise<Provider>;
|
|
7887
8004
|
};
|
|
7888
8005
|
/**
|
|
7889
8006
|
* ProvidersApi - object-oriented interface
|
|
@@ -7922,12 +8039,12 @@ declare class ProvidersApi extends BaseAPI {
|
|
|
7922
8039
|
*
|
|
7923
8040
|
* @summary Providers Update
|
|
7924
8041
|
* @param {string} providerId
|
|
7925
|
-
* @param {
|
|
8042
|
+
* @param {Update} update
|
|
7926
8043
|
* @param {*} [options] Override http request option.
|
|
7927
8044
|
* @throws {RequiredError}
|
|
7928
8045
|
* @memberof ProvidersApi
|
|
7929
8046
|
*/
|
|
7930
|
-
providersUpdate(providerId: string,
|
|
8047
|
+
providersUpdate(providerId: string, update: Update, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<Provider, any>>;
|
|
7931
8048
|
}
|
|
7932
8049
|
/**
|
|
7933
8050
|
* ReservationsApi - axios parameter creator
|
|
@@ -8471,11 +8588,11 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
8471
8588
|
*
|
|
8472
8589
|
* @summary Addresses Update
|
|
8473
8590
|
* @param {string} addressId
|
|
8474
|
-
* @param {
|
|
8591
|
+
* @param {AddressUpdate} addressUpdate
|
|
8475
8592
|
* @param {*} [options] Override http request option.
|
|
8476
8593
|
* @throws {RequiredError}
|
|
8477
8594
|
*/
|
|
8478
|
-
addressesUpdate: (addressId: string,
|
|
8595
|
+
addressesUpdate: (addressId: string, addressUpdate: AddressUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8479
8596
|
/**
|
|
8480
8597
|
*
|
|
8481
8598
|
* @summary Ai Responses Create
|
|
@@ -8487,11 +8604,11 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
8487
8604
|
/**
|
|
8488
8605
|
*
|
|
8489
8606
|
* @summary Communities Create
|
|
8490
|
-
* @param {
|
|
8607
|
+
* @param {CommunityCreate} communityCreate
|
|
8491
8608
|
* @param {*} [options] Override http request option.
|
|
8492
8609
|
* @throws {RequiredError}
|
|
8493
8610
|
*/
|
|
8494
|
-
communitiesCreate: (
|
|
8611
|
+
communitiesCreate: (communityCreate: CommunityCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8495
8612
|
/**
|
|
8496
8613
|
*
|
|
8497
8614
|
* @summary Communities Delete
|
|
@@ -8524,11 +8641,11 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
8524
8641
|
*
|
|
8525
8642
|
* @summary Communities Update
|
|
8526
8643
|
* @param {string} communityId
|
|
8527
|
-
* @param {
|
|
8644
|
+
* @param {CommunityUpdate} communityUpdate
|
|
8528
8645
|
* @param {*} [options] Override http request option.
|
|
8529
8646
|
* @throws {RequiredError}
|
|
8530
8647
|
*/
|
|
8531
|
-
communitiesUpdate: (communityId: string,
|
|
8648
|
+
communitiesUpdate: (communityId: string, communityUpdate: CommunityUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8532
8649
|
/**
|
|
8533
8650
|
*
|
|
8534
8651
|
* @summary Community Types Create
|
|
@@ -8660,11 +8777,11 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
8660
8777
|
/**
|
|
8661
8778
|
*
|
|
8662
8779
|
* @summary Content Item Create
|
|
8663
|
-
* @param {
|
|
8780
|
+
* @param {ContentItemCreate} contentItemCreate
|
|
8664
8781
|
* @param {*} [options] Override http request option.
|
|
8665
8782
|
* @throws {RequiredError}
|
|
8666
8783
|
*/
|
|
8667
|
-
contentItemsCreate: (
|
|
8784
|
+
contentItemsCreate: (contentItemCreate: ContentItemCreate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8668
8785
|
/**
|
|
8669
8786
|
*
|
|
8670
8787
|
* @summary Content Item Delete
|
|
@@ -8988,11 +9105,11 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
8988
9105
|
*
|
|
8989
9106
|
* @summary Providers Update
|
|
8990
9107
|
* @param {string} providerId
|
|
8991
|
-
* @param {
|
|
9108
|
+
* @param {Update} update
|
|
8992
9109
|
* @param {*} [options] Override http request option.
|
|
8993
9110
|
* @throws {RequiredError}
|
|
8994
9111
|
*/
|
|
8995
|
-
providersUpdate: (providerId: string,
|
|
9112
|
+
providersUpdate: (providerId: string, update: Update, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
8996
9113
|
/**
|
|
8997
9114
|
*
|
|
8998
9115
|
* @summary Reservation Versions Get
|
|
@@ -9152,11 +9269,11 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
9152
9269
|
*
|
|
9153
9270
|
* @summary Addresses Update
|
|
9154
9271
|
* @param {string} addressId
|
|
9155
|
-
* @param {
|
|
9272
|
+
* @param {AddressUpdate} addressUpdate
|
|
9156
9273
|
* @param {*} [options] Override http request option.
|
|
9157
9274
|
* @throws {RequiredError}
|
|
9158
9275
|
*/
|
|
9159
|
-
addressesUpdate(addressId: string,
|
|
9276
|
+
addressesUpdate(addressId: string, addressUpdate: AddressUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Address>>;
|
|
9160
9277
|
/**
|
|
9161
9278
|
*
|
|
9162
9279
|
* @summary Ai Responses Create
|
|
@@ -9168,11 +9285,11 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
9168
9285
|
/**
|
|
9169
9286
|
*
|
|
9170
9287
|
* @summary Communities Create
|
|
9171
|
-
* @param {
|
|
9288
|
+
* @param {CommunityCreate} communityCreate
|
|
9172
9289
|
* @param {*} [options] Override http request option.
|
|
9173
9290
|
* @throws {RequiredError}
|
|
9174
9291
|
*/
|
|
9175
|
-
communitiesCreate(
|
|
9292
|
+
communitiesCreate(communityCreate: CommunityCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Community>>;
|
|
9176
9293
|
/**
|
|
9177
9294
|
*
|
|
9178
9295
|
* @summary Communities Delete
|
|
@@ -9205,11 +9322,11 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
9205
9322
|
*
|
|
9206
9323
|
* @summary Communities Update
|
|
9207
9324
|
* @param {string} communityId
|
|
9208
|
-
* @param {
|
|
9325
|
+
* @param {CommunityUpdate} communityUpdate
|
|
9209
9326
|
* @param {*} [options] Override http request option.
|
|
9210
9327
|
* @throws {RequiredError}
|
|
9211
9328
|
*/
|
|
9212
|
-
communitiesUpdate(communityId: string,
|
|
9329
|
+
communitiesUpdate(communityId: string, communityUpdate: CommunityUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Community>>;
|
|
9213
9330
|
/**
|
|
9214
9331
|
*
|
|
9215
9332
|
* @summary Community Types Create
|
|
@@ -9341,11 +9458,11 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
9341
9458
|
/**
|
|
9342
9459
|
*
|
|
9343
9460
|
* @summary Content Item Create
|
|
9344
|
-
* @param {
|
|
9461
|
+
* @param {ContentItemCreate} contentItemCreate
|
|
9345
9462
|
* @param {*} [options] Override http request option.
|
|
9346
9463
|
* @throws {RequiredError}
|
|
9347
9464
|
*/
|
|
9348
|
-
contentItemsCreate(
|
|
9465
|
+
contentItemsCreate(contentItemCreate: ContentItemCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ContentItem>>;
|
|
9349
9466
|
/**
|
|
9350
9467
|
*
|
|
9351
9468
|
* @summary Content Item Delete
|
|
@@ -9669,11 +9786,11 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
9669
9786
|
*
|
|
9670
9787
|
* @summary Providers Update
|
|
9671
9788
|
* @param {string} providerId
|
|
9672
|
-
* @param {
|
|
9789
|
+
* @param {Update} update
|
|
9673
9790
|
* @param {*} [options] Override http request option.
|
|
9674
9791
|
* @throws {RequiredError}
|
|
9675
9792
|
*/
|
|
9676
|
-
providersUpdate(providerId: string,
|
|
9793
|
+
providersUpdate(providerId: string, update: Update, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Provider>>;
|
|
9677
9794
|
/**
|
|
9678
9795
|
*
|
|
9679
9796
|
* @summary Reservation Versions Get
|
|
@@ -9833,11 +9950,11 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
9833
9950
|
*
|
|
9834
9951
|
* @summary Addresses Update
|
|
9835
9952
|
* @param {string} addressId
|
|
9836
|
-
* @param {
|
|
9953
|
+
* @param {AddressUpdate} addressUpdate
|
|
9837
9954
|
* @param {*} [options] Override http request option.
|
|
9838
9955
|
* @throws {RequiredError}
|
|
9839
9956
|
*/
|
|
9840
|
-
addressesUpdate(addressId: string,
|
|
9957
|
+
addressesUpdate(addressId: string, addressUpdate: AddressUpdate, options?: RawAxiosRequestConfig): AxiosPromise<Address>;
|
|
9841
9958
|
/**
|
|
9842
9959
|
*
|
|
9843
9960
|
* @summary Ai Responses Create
|
|
@@ -9849,11 +9966,11 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
9849
9966
|
/**
|
|
9850
9967
|
*
|
|
9851
9968
|
* @summary Communities Create
|
|
9852
|
-
* @param {
|
|
9969
|
+
* @param {CommunityCreate} communityCreate
|
|
9853
9970
|
* @param {*} [options] Override http request option.
|
|
9854
9971
|
* @throws {RequiredError}
|
|
9855
9972
|
*/
|
|
9856
|
-
communitiesCreate(
|
|
9973
|
+
communitiesCreate(communityCreate: CommunityCreate, options?: RawAxiosRequestConfig): AxiosPromise<Community>;
|
|
9857
9974
|
/**
|
|
9858
9975
|
*
|
|
9859
9976
|
* @summary Communities Delete
|
|
@@ -9886,11 +10003,11 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
9886
10003
|
*
|
|
9887
10004
|
* @summary Communities Update
|
|
9888
10005
|
* @param {string} communityId
|
|
9889
|
-
* @param {
|
|
10006
|
+
* @param {CommunityUpdate} communityUpdate
|
|
9890
10007
|
* @param {*} [options] Override http request option.
|
|
9891
10008
|
* @throws {RequiredError}
|
|
9892
10009
|
*/
|
|
9893
|
-
communitiesUpdate(communityId: string,
|
|
10010
|
+
communitiesUpdate(communityId: string, communityUpdate: CommunityUpdate, options?: RawAxiosRequestConfig): AxiosPromise<Community>;
|
|
9894
10011
|
/**
|
|
9895
10012
|
*
|
|
9896
10013
|
* @summary Community Types Create
|
|
@@ -10022,11 +10139,11 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
10022
10139
|
/**
|
|
10023
10140
|
*
|
|
10024
10141
|
* @summary Content Item Create
|
|
10025
|
-
* @param {
|
|
10142
|
+
* @param {ContentItemCreate} contentItemCreate
|
|
10026
10143
|
* @param {*} [options] Override http request option.
|
|
10027
10144
|
* @throws {RequiredError}
|
|
10028
10145
|
*/
|
|
10029
|
-
contentItemsCreate(
|
|
10146
|
+
contentItemsCreate(contentItemCreate: ContentItemCreate, options?: RawAxiosRequestConfig): AxiosPromise<ContentItem>;
|
|
10030
10147
|
/**
|
|
10031
10148
|
*
|
|
10032
10149
|
* @summary Content Item Delete
|
|
@@ -10350,11 +10467,11 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
10350
10467
|
*
|
|
10351
10468
|
* @summary Providers Update
|
|
10352
10469
|
* @param {string} providerId
|
|
10353
|
-
* @param {
|
|
10470
|
+
* @param {Update} update
|
|
10354
10471
|
* @param {*} [options] Override http request option.
|
|
10355
10472
|
* @throws {RequiredError}
|
|
10356
10473
|
*/
|
|
10357
|
-
providersUpdate(providerId: string,
|
|
10474
|
+
providersUpdate(providerId: string, update: Update, options?: RawAxiosRequestConfig): AxiosPromise<Provider>;
|
|
10358
10475
|
/**
|
|
10359
10476
|
*
|
|
10360
10477
|
* @summary Reservation Versions Get
|
|
@@ -10520,12 +10637,12 @@ declare class UnboundApi extends BaseAPI {
|
|
|
10520
10637
|
*
|
|
10521
10638
|
* @summary Addresses Update
|
|
10522
10639
|
* @param {string} addressId
|
|
10523
|
-
* @param {
|
|
10640
|
+
* @param {AddressUpdate} addressUpdate
|
|
10524
10641
|
* @param {*} [options] Override http request option.
|
|
10525
10642
|
* @throws {RequiredError}
|
|
10526
10643
|
* @memberof UnboundApi
|
|
10527
10644
|
*/
|
|
10528
|
-
addressesUpdate(addressId: string,
|
|
10645
|
+
addressesUpdate(addressId: string, addressUpdate: AddressUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<Address, any>>;
|
|
10529
10646
|
/**
|
|
10530
10647
|
*
|
|
10531
10648
|
* @summary Ai Responses Create
|
|
@@ -10538,12 +10655,12 @@ declare class UnboundApi extends BaseAPI {
|
|
|
10538
10655
|
/**
|
|
10539
10656
|
*
|
|
10540
10657
|
* @summary Communities Create
|
|
10541
|
-
* @param {
|
|
10658
|
+
* @param {CommunityCreate} communityCreate
|
|
10542
10659
|
* @param {*} [options] Override http request option.
|
|
10543
10660
|
* @throws {RequiredError}
|
|
10544
10661
|
* @memberof UnboundApi
|
|
10545
10662
|
*/
|
|
10546
|
-
communitiesCreate(
|
|
10663
|
+
communitiesCreate(communityCreate: CommunityCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<Community, any>>;
|
|
10547
10664
|
/**
|
|
10548
10665
|
*
|
|
10549
10666
|
* @summary Communities Delete
|
|
@@ -10579,12 +10696,12 @@ declare class UnboundApi extends BaseAPI {
|
|
|
10579
10696
|
*
|
|
10580
10697
|
* @summary Communities Update
|
|
10581
10698
|
* @param {string} communityId
|
|
10582
|
-
* @param {
|
|
10699
|
+
* @param {CommunityUpdate} communityUpdate
|
|
10583
10700
|
* @param {*} [options] Override http request option.
|
|
10584
10701
|
* @throws {RequiredError}
|
|
10585
10702
|
* @memberof UnboundApi
|
|
10586
10703
|
*/
|
|
10587
|
-
communitiesUpdate(communityId: string,
|
|
10704
|
+
communitiesUpdate(communityId: string, communityUpdate: CommunityUpdate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<Community, any>>;
|
|
10588
10705
|
/**
|
|
10589
10706
|
*
|
|
10590
10707
|
* @summary Community Types Create
|
|
@@ -10730,12 +10847,12 @@ declare class UnboundApi extends BaseAPI {
|
|
|
10730
10847
|
/**
|
|
10731
10848
|
*
|
|
10732
10849
|
* @summary Content Item Create
|
|
10733
|
-
* @param {
|
|
10850
|
+
* @param {ContentItemCreate} contentItemCreate
|
|
10734
10851
|
* @param {*} [options] Override http request option.
|
|
10735
10852
|
* @throws {RequiredError}
|
|
10736
10853
|
* @memberof UnboundApi
|
|
10737
10854
|
*/
|
|
10738
|
-
contentItemsCreate(
|
|
10855
|
+
contentItemsCreate(contentItemCreate: ContentItemCreate, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ContentItem, any>>;
|
|
10739
10856
|
/**
|
|
10740
10857
|
*
|
|
10741
10858
|
* @summary Content Item Delete
|
|
@@ -11094,12 +11211,12 @@ declare class UnboundApi extends BaseAPI {
|
|
|
11094
11211
|
*
|
|
11095
11212
|
* @summary Providers Update
|
|
11096
11213
|
* @param {string} providerId
|
|
11097
|
-
* @param {
|
|
11214
|
+
* @param {Update} update
|
|
11098
11215
|
* @param {*} [options] Override http request option.
|
|
11099
11216
|
* @throws {RequiredError}
|
|
11100
11217
|
* @memberof UnboundApi
|
|
11101
11218
|
*/
|
|
11102
|
-
providersUpdate(providerId: string,
|
|
11219
|
+
providersUpdate(providerId: string, update: Update, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<Provider, any>>;
|
|
11103
11220
|
/**
|
|
11104
11221
|
*
|
|
11105
11222
|
* @summary Reservation Versions Get
|
|
@@ -11324,4 +11441,4 @@ declare class UserDevicesApi extends BaseAPI {
|
|
|
11324
11441
|
userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
11325
11442
|
}
|
|
11326
11443
|
|
|
11327
|
-
export { type AIResponse, type AIResponseCreate, AIResponsesApi, AIResponsesApiAxiosParamCreator, AIResponsesApiFactory, AIResponsesApiFp, type APIContactsListings, type APIValidationError, type APIValidationErrorLocInner, type Account, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, type Address, type AddressCreate, type AddressProviderAddressesProviderAttribution, type AttributeSource, type Attribution, AuthApi, AuthApiAxiosParamCreator, AuthApiFactory, AuthApiFp, type BaseAddress, type Bot, BotParticipantTypeEnum, type ChannelInfo, CommunitiesApi, CommunitiesApiAxiosParamCreator, CommunitiesApiFactory, CommunitiesApiFp, type Community, type CommunityType, type CommunityTypeCreate, type CommunityTypeList, CommunityTypeType, type CommunityTypeUpdate, CommunityTypesApi, CommunityTypesApiAxiosParamCreator, CommunityTypesApiFactory, CommunityTypesApiFp, Configuration, type ConfigurationParameters, type Contact, type ContactCreate, type ContactTypeData, type ContactUpdate, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, ContactsListingsApi, ContactsListingsApiAxiosParamCreator, ContactsListingsApiFactory, ContactsListingsApiFp, type ContentItem, type ContentItemFullResponse, type ContentItemUpdate, type ContentItemUpdateContentTypeData, type ContentItemVersion, ContentItemsApi, ContentItemsApiAxiosParamCreator, ContentItemsApiFactory, ContentItemsApiFp, type ContentRelatedAllResourcesTypeData, ContentRelatedAllResourcesTypeDataRelationTypeEnum, ContentRelatedAllResourcesTypeDataResourceTypeEnum, type ContentRelatedIndividualResourcesFullTypeData, ContentRelatedIndividualResourcesFullTypeDataRelationTypeEnum, type ContentRelatedIndividualResourcesFullTypeDataResourcesInner, type ContentRelatedIndividualResourcesTypeDataInput, ContentRelatedIndividualResourcesTypeDataInputRelationTypeEnum, type ContentRelatedIndividualResourcesTypeDataOutput, ContentRelatedIndividualResourcesTypeDataOutputRelationTypeEnum, type ContentRelatedResource, type Contenttypedata, type Conversation, type ConversationCreate, ConversationStatus, type ConversationSuggestion, type ConversationUpdate, ConversationsApi, ConversationsApiAxiosParamCreator, ConversationsApiFactory, ConversationsApiFp, type Conversationtypedata, type Create, type CreateContactListing, type DownloadURLRequest, type DownloadURLResponse, type Email, type EmailConversationData, EmailConversationDataConversationTypeEnum, type EmailCreate, type EmailInbox, EmailInboxInboxTypeEnum, type EmailProviderMessage, type EmailProviderMessageCreate, EmailProviderMessageCreateMessageTypeEnum, EmailProviderMessageMessageTypeEnum, type EmailUpdate, type ExternalStaff, ExternalStaffStaffTypeEnum, type FileContent, FileContentContentTypeEnum, FilesApi, FilesApiAxiosParamCreator, FilesApiFactory, FilesApiFp, type Guest, type GuestData, GuestParticipantTypeEnum, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, type Inbox, InboxesApi, InboxesApiAxiosParamCreator, InboxesApiFactory, InboxesApiFp, type Inboxtypedata, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type Inquiry, type InquiryTypeCreate, InquiryTypeCreateRelationTypeEnum, type InquiryTypeUpdate, InquiryTypeUpdateRelationTypeEnum, type InternalStaff, InternalStaffStaffTypeEnum, type LeadData, type ListResponseAccount, type ListResponseInbox, type ListResponseInquiry, type ListResponseManagedPhoneNumber, type ListResponsePermission, type ListResponseProvider, type ListResponseRole, type Listing, type ListingVersion, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, type ManagedPhoneNumber, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, type Message, type MessageAttachment, type MessageCreate, MessageDirection, MessageStatus, MessagesApi, MessagesApiAxiosParamCreator, MessagesApiFactory, MessagesApiFp, type Messagetypedata, type Messagetypedata1, type OwnerData, type OwnerTypeCreate, OwnerTypeCreateRelationTypeEnum, type OwnerTypeUpdate, OwnerTypeUpdateRelationTypeEnum, type PaginatedResponseCommunity, type PaginatedResponseContact, type PaginatedResponseContentItemFullResponse, type PaginatedResponseContentItemVersion, type PaginatedResponseConversation, type PaginatedResponseListing, type PaginatedResponseListingVersion, type PaginatedResponseMessage, type PaginatedResponseReservation, type PaginatedResponseReservationVersion, PaginationDirection, type Participantname, type Participanttypedata, type Permission, type PermissionCreate, PermissionsApi, PermissionsApiAxiosParamCreator, PermissionsApiFactory, PermissionsApiFp, type Phone, type PhoneCapabilities, type PhoneCreate, type PhoneInbox, PhoneInboxInboxTypeEnum, PhoneLifecycle, type PhoneProviderPhonesProviderAttribution, type PhoneUpdate, type PlainTextContent, PlainTextContentContentTypeEnum, PropertyTypes, type Provider, type ProviderAccountInbox, ProviderAccountInboxInboxTypeEnum, type ProviderAddresses, type ProviderAttribution, ProviderConversationCommunicationType, type ProviderConversationData, ProviderConversationDataConversationTypeEnum, type ProviderCreate, type ProviderEmails, type ProviderInfo, type ProviderPhones, type ProviderStaff, ProviderStaffStaffTypeEnum,
|
|
11444
|
+
export { type AIResponse, type AIResponseCreate, AIResponsesApi, AIResponsesApiAxiosParamCreator, AIResponsesApiFactory, AIResponsesApiFp, type APIContactsListings, type APIValidationError, type APIValidationErrorLocInner, type Account, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, type Address, type AddressCreate, type AddressProviderAddressesProviderAttribution, type AddressUpdate, type AttributeSource, type Attribution, AuthApi, AuthApiAxiosParamCreator, AuthApiFactory, AuthApiFp, type BaseAddress, type Bot, BotParticipantTypeEnum, type ChannelInfo, CommunitiesApi, CommunitiesApiAxiosParamCreator, CommunitiesApiFactory, CommunitiesApiFp, type Community, type CommunityCreate, type CommunityType, type CommunityTypeCreate, type CommunityTypeList, CommunityTypeType, type CommunityTypeUpdate, CommunityTypesApi, CommunityTypesApiAxiosParamCreator, CommunityTypesApiFactory, CommunityTypesApiFp, type CommunityUpdate, Configuration, type ConfigurationParameters, type Contact, type ContactCreate, type ContactTypeData, type ContactUpdate, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, ContactsListingsApi, ContactsListingsApiAxiosParamCreator, ContactsListingsApiFactory, ContactsListingsApiFp, type ContentItem, type ContentItemCreate, type ContentItemFullResponse, type ContentItemUpdate, type ContentItemUpdateContentTypeData, type ContentItemVersion, ContentItemsApi, ContentItemsApiAxiosParamCreator, ContentItemsApiFactory, ContentItemsApiFp, type ContentRelatedAllResourcesTypeData, ContentRelatedAllResourcesTypeDataRelationTypeEnum, ContentRelatedAllResourcesTypeDataResourceTypeEnum, type ContentRelatedIndividualResourcesFullTypeData, ContentRelatedIndividualResourcesFullTypeDataRelationTypeEnum, type ContentRelatedIndividualResourcesFullTypeDataResourcesInner, type ContentRelatedIndividualResourcesTypeDataInput, ContentRelatedIndividualResourcesTypeDataInputRelationTypeEnum, type ContentRelatedIndividualResourcesTypeDataOutput, ContentRelatedIndividualResourcesTypeDataOutputRelationTypeEnum, type ContentRelatedResource, type Contenttypedata, type Conversation, type ConversationCreate, ConversationStatus, type ConversationSuggestion, type ConversationUpdate, ConversationsApi, ConversationsApiAxiosParamCreator, ConversationsApiFactory, ConversationsApiFp, type Conversationtypedata, type Create, type CreateContactListing, CreateConversationTypeEnum, type DownloadURLRequest, type DownloadURLResponse, type Email, type EmailConversationData, EmailConversationDataConversationTypeEnum, type EmailCreate, type EmailInbox, EmailInboxInboxTypeEnum, type EmailProviderMessage, type EmailProviderMessageCreate, EmailProviderMessageCreateMessageTypeEnum, EmailProviderMessageMessageTypeEnum, type EmailUpdate, type ExternalStaff, ExternalStaffStaffTypeEnum, type FileContent, FileContentContentTypeEnum, FilesApi, FilesApiAxiosParamCreator, FilesApiFactory, FilesApiFp, type Guest, type GuestData, GuestParticipantTypeEnum, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, type Inbox, InboxesApi, InboxesApiAxiosParamCreator, InboxesApiFactory, InboxesApiFp, type Inboxtypedata, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type Inquiry, type InquiryTypeCreate, InquiryTypeCreateRelationTypeEnum, type InquiryTypeUpdate, InquiryTypeUpdateRelationTypeEnum, type InternalStaff, InternalStaffStaffTypeEnum, type LeadData, type ListResponseAccount, type ListResponseInbox, type ListResponseInquiry, type ListResponseManagedPhoneNumber, type ListResponsePermission, type ListResponseProvider, type ListResponseRole, type Listing, type ListingVersion, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, type ManagedPhoneNumber, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, type Message, type MessageAttachment, type MessageCreate, MessageDirection, MessageStatus, MessagesApi, MessagesApiAxiosParamCreator, MessagesApiFactory, MessagesApiFp, type Messagetypedata, type Messagetypedata1, type OwnerData, type OwnerTypeCreate, OwnerTypeCreateRelationTypeEnum, type OwnerTypeUpdate, OwnerTypeUpdateRelationTypeEnum, type PaginatedResponseCommunity, type PaginatedResponseContact, type PaginatedResponseContentItemFullResponse, type PaginatedResponseContentItemVersion, type PaginatedResponseConversation, type PaginatedResponseListing, type PaginatedResponseListingVersion, type PaginatedResponseMessage, type PaginatedResponseReservation, type PaginatedResponseReservationVersion, PaginationDirection, type Participantname, type Participanttypedata, type Permission, type PermissionCreate, PermissionsApi, PermissionsApiAxiosParamCreator, PermissionsApiFactory, PermissionsApiFp, type Phone, type PhoneCapabilities, type PhoneCreate, type PhoneInbox, PhoneInboxInboxTypeEnum, PhoneLifecycle, type PhoneProviderPhonesProviderAttribution, type PhoneUpdate, type PlainTextContent, PlainTextContentContentTypeEnum, PropertyTypes, type Provider, type ProviderAccountInbox, ProviderAccountInboxInboxTypeEnum, type ProviderAddresses, type ProviderAttribution, ProviderConversationCommunicationType, type ProviderConversationData, ProviderConversationDataConversationTypeEnum, type ProviderCreate, type ProviderEmails, type ProviderInfo, type ProviderPhones, type ProviderStaff, ProviderStaffStaffTypeEnum, ProvidersApi, ProvidersApiAxiosParamCreator, ProvidersApiFactory, ProvidersApiFp, type RelatedListing, RelatedResourceType, type Relationtypedata, type Relationtypedata1, type Relationtypedata2, type Relationtypedata3, type Relationtypedata4, type RentalProviderMessage, RentalProviderMessageCommunicationType, type RentalProviderMessageCreate, RentalProviderMessageCreateMessageTypeEnum, RentalProviderMessageMessageTypeEnum, RentalProviderTypes, type Reservation, ReservationChannelTypes, ReservationStatus, type ReservationVersion, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, type Role, type RoleCreate, RolesApi, RolesApiAxiosParamCreator, RolesApiFactory, RolesApiFp, type SMSConversationData, SMSConversationDataConversationTypeEnum, type SMSInboundSenderTypeData, SMSInboundSenderTypeDataDirectionEnum, type SMSLeg, SMSLineType, type SMSMessage, type SMSMessageCreate, SMSMessageCreateMessageTypeEnum, SMSMessageMessageTypeEnum, SMSMessageStatus, type SMSOutboundSenderTypeData, SMSOutboundSenderTypeDataDirectionEnum, type Sendertypedata, SortBy, SortOrder, type Staff, StaffParticipantTypeEnum, type Stafftypedata, type Subject, type Suggestion, SuggestionRejectionReasonType, SuggestionStatus, SuggestionUsedType, TelnyxApi, TelnyxApiAxiosParamCreator, TelnyxApiFactory, TelnyxApiFp, type ToItem, type ToPhone, type URLContent, URLContentContentTypeEnum, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp, type Update, type UpdateContactListing, type UpdateContentRelatedResourcesRequest, type UpdateContentRelatedResourcesResponse, type UploadURLRequest, type UploadURLResponse, type UserApi, type UserDevice, type UserDeviceCreate, UserDeviceOs, UserDevicesApi, UserDevicesApiAxiosParamCreator, UserDevicesApiFactory, UserDevicesApiFp, type WithSuggestion };
|