@closerplatform/spinner-openapi 0.12.60 → 0.12.64

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 (3) hide show
  1. package/dist/api.d.ts +0 -604
  2. package/dist/api.js +2 -1345
  3. package/package.json +1 -1
package/dist/api.d.ts CHANGED
@@ -8511,581 +8511,6 @@ export declare class ConversationsApi extends BaseAPI {
8511
8511
  */
8512
8512
  getCustomConversations(status?: Array<string>, assignee?: string, options?: any): Promise<InboxState>;
8513
8513
  }
8514
- /**
8515
- * CustomersApi - fetch parameter creator
8516
- * @export
8517
- */
8518
- export declare const CustomersApiFetchParamCreator: (configuration?: Configuration) => {
8519
- /**
8520
- *
8521
- * @summary Add new address
8522
- * @param {CustomerAddressForm} body
8523
- * @param {*} [options] Override http request option.
8524
- * @throws {RequiredError}
8525
- */
8526
- addAddress(body: CustomerAddressForm, options?: any): FetchArgs;
8527
- /**
8528
- *
8529
- * @summary Add uncofirmed login
8530
- * @param {CustomerLoginForm} body
8531
- * @param {*} [options] Override http request option.
8532
- * @throws {RequiredError}
8533
- */
8534
- addLogin(body: CustomerLoginForm, options?: any): FetchArgs;
8535
- /**
8536
- *
8537
- * @summary Add or replace pin to Vault
8538
- * @param {PinForm} body
8539
- * @param {*} [options] Override http request option.
8540
- * @throws {RequiredError}
8541
- */
8542
- addPin(body: PinForm, options?: any): FetchArgs;
8543
- /**
8544
- *
8545
- * @summary Confirm the new login (either email or phone number)
8546
- * @param {CustomerLoginConfirmForm} body
8547
- * @param {*} [options] Override http request option.
8548
- * @throws {RequiredError}
8549
- */
8550
- confirmLogin(body: CustomerLoginConfirmForm, options?: any): FetchArgs;
8551
- /**
8552
- *
8553
- * @summary Confirm an email/number while signing in
8554
- * @param {CustomerSignInConfirm} body
8555
- * @param {*} [options] Override http request option.
8556
- * @throws {RequiredError}
8557
- */
8558
- confirmSignIn(body: CustomerSignInConfirm, options?: any): FetchArgs;
8559
- /**
8560
- *
8561
- * @summary Confirm an email/number while signing up
8562
- * @param {CustomerSignUpConfirm} body
8563
- * @param {*} [options] Override http request option.
8564
- * @throws {RequiredError}
8565
- */
8566
- confirmSignUp(body: CustomerSignUpConfirm, options?: any): FetchArgs;
8567
- /**
8568
- *
8569
- * @summary Create lead for org
8570
- * @param {LeadRequest} body
8571
- * @param {*} [options] Override http request option.
8572
- * @throws {RequiredError}
8573
- */
8574
- createLead(body: LeadRequest, options?: any): FetchArgs;
8575
- /**
8576
- *
8577
- * @summary Anonymize customer profile
8578
- * @param {string} customerId
8579
- * @param {*} [options] Override http request option.
8580
- * @throws {RequiredError}
8581
- */
8582
- deleteCustomerDeprecated(customerId: string, options?: any): FetchArgs;
8583
- /**
8584
- *
8585
- * @summary Get list of customer addresses
8586
- * @param {*} [options] Override http request option.
8587
- * @throws {RequiredError}
8588
- */
8589
- getAddresses(options?: any): FetchArgs;
8590
- /**
8591
- *
8592
- * @summary Get customer logins
8593
- * @param {*} [options] Override http request option.
8594
- * @throws {RequiredError}
8595
- */
8596
- getCustomerLogins(options?: any): FetchArgs;
8597
- /**
8598
- *
8599
- * @summary Get customer profile by id
8600
- * @param {string} customerId
8601
- * @param {*} [options] Override http request option.
8602
- * @throws {RequiredError}
8603
- */
8604
- getCustomerProfile(customerId: string, options?: any): FetchArgs;
8605
- /**
8606
- *
8607
- * @summary Get own customer profile
8608
- * @param {*} [options] Override http request option.
8609
- * @throws {RequiredError}
8610
- */
8611
- getOwnCustomerProfile(options?: any): FetchArgs;
8612
- /**
8613
- *
8614
- * @summary Generate and get vault token
8615
- * @param {PinForm} body
8616
- * @param {*} [options] Override http request option.
8617
- * @throws {RequiredError}
8618
- */
8619
- getVaultToken(body: PinForm, options?: any): FetchArgs;
8620
- /**
8621
- *
8622
- * @summary Request confirmation code to sign in
8623
- * @param {CustomerSignInForm} body
8624
- * @param {*} [options] Override http request option.
8625
- * @throws {RequiredError}
8626
- */
8627
- requestSignIn(body: CustomerSignInForm, options?: any): FetchArgs;
8628
- /**
8629
- *
8630
- * @summary Request confirmation code to sign up
8631
- * @param {CustomerSignUpForm} body
8632
- * @param {*} [options] Override http request option.
8633
- * @throws {RequiredError}
8634
- */
8635
- requestSignUp(body: CustomerSignUpForm, options?: any): FetchArgs;
8636
- /**
8637
- *
8638
- * @summary Search customer by login
8639
- * @param {string} query
8640
- * @param {*} [options] Override http request option.
8641
- * @throws {RequiredError}
8642
- */
8643
- searchCustomer(query: string, options?: any): FetchArgs;
8644
- /**
8645
- *
8646
- * @summary Update customer names
8647
- * @param {CustomerNames} body
8648
- * @param {*} [options] Override http request option.
8649
- * @throws {RequiredError}
8650
- */
8651
- updateCustomerNames(body: CustomerNames, options?: any): FetchArgs;
8652
- };
8653
- /**
8654
- * CustomersApi - functional programming interface
8655
- * @export
8656
- */
8657
- export declare const CustomersApiFp: (configuration?: Configuration) => {
8658
- /**
8659
- *
8660
- * @summary Add new address
8661
- * @param {CustomerAddressForm} body
8662
- * @param {*} [options] Override http request option.
8663
- * @throws {RequiredError}
8664
- */
8665
- addAddress(body: CustomerAddressForm, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Response>;
8666
- /**
8667
- *
8668
- * @summary Add uncofirmed login
8669
- * @param {CustomerLoginForm} body
8670
- * @param {*} [options] Override http request option.
8671
- * @throws {RequiredError}
8672
- */
8673
- addLogin(body: CustomerLoginForm, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Response>;
8674
- /**
8675
- *
8676
- * @summary Add or replace pin to Vault
8677
- * @param {PinForm} body
8678
- * @param {*} [options] Override http request option.
8679
- * @throws {RequiredError}
8680
- */
8681
- addPin(body: PinForm, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Response>;
8682
- /**
8683
- *
8684
- * @summary Confirm the new login (either email or phone number)
8685
- * @param {CustomerLoginConfirmForm} body
8686
- * @param {*} [options] Override http request option.
8687
- * @throws {RequiredError}
8688
- */
8689
- confirmLogin(body: CustomerLoginConfirmForm, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Response>;
8690
- /**
8691
- *
8692
- * @summary Confirm an email/number while signing in
8693
- * @param {CustomerSignInConfirm} body
8694
- * @param {*} [options] Override http request option.
8695
- * @throws {RequiredError}
8696
- */
8697
- confirmSignIn(body: CustomerSignInConfirm, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<CustomerCtx>;
8698
- /**
8699
- *
8700
- * @summary Confirm an email/number while signing up
8701
- * @param {CustomerSignUpConfirm} body
8702
- * @param {*} [options] Override http request option.
8703
- * @throws {RequiredError}
8704
- */
8705
- confirmSignUp(body: CustomerSignUpConfirm, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<CustomerCtx>;
8706
- /**
8707
- *
8708
- * @summary Create lead for org
8709
- * @param {LeadRequest} body
8710
- * @param {*} [options] Override http request option.
8711
- * @throws {RequiredError}
8712
- */
8713
- createLead(body: LeadRequest, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<LeadCtx>;
8714
- /**
8715
- *
8716
- * @summary Anonymize customer profile
8717
- * @param {string} customerId
8718
- * @param {*} [options] Override http request option.
8719
- * @throws {RequiredError}
8720
- */
8721
- deleteCustomerDeprecated(customerId: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Response>;
8722
- /**
8723
- *
8724
- * @summary Get list of customer addresses
8725
- * @param {*} [options] Override http request option.
8726
- * @throws {RequiredError}
8727
- */
8728
- getAddresses(options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Array<CustomerAddress>>;
8729
- /**
8730
- *
8731
- * @summary Get customer logins
8732
- * @param {*} [options] Override http request option.
8733
- * @throws {RequiredError}
8734
- */
8735
- getCustomerLogins(options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Array<CustomerLogin>>;
8736
- /**
8737
- *
8738
- * @summary Get customer profile by id
8739
- * @param {string} customerId
8740
- * @param {*} [options] Override http request option.
8741
- * @throws {RequiredError}
8742
- */
8743
- getCustomerProfile(customerId: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<CustomerProfile>;
8744
- /**
8745
- *
8746
- * @summary Get own customer profile
8747
- * @param {*} [options] Override http request option.
8748
- * @throws {RequiredError}
8749
- */
8750
- getOwnCustomerProfile(options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<CustomerCtx>;
8751
- /**
8752
- *
8753
- * @summary Generate and get vault token
8754
- * @param {PinForm} body
8755
- * @param {*} [options] Override http request option.
8756
- * @throws {RequiredError}
8757
- */
8758
- getVaultToken(body: PinForm, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<XVaultToken>;
8759
- /**
8760
- *
8761
- * @summary Request confirmation code to sign in
8762
- * @param {CustomerSignInForm} body
8763
- * @param {*} [options] Override http request option.
8764
- * @throws {RequiredError}
8765
- */
8766
- requestSignIn(body: CustomerSignInForm, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Response>;
8767
- /**
8768
- *
8769
- * @summary Request confirmation code to sign up
8770
- * @param {CustomerSignUpForm} body
8771
- * @param {*} [options] Override http request option.
8772
- * @throws {RequiredError}
8773
- */
8774
- requestSignUp(body: CustomerSignUpForm, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Response>;
8775
- /**
8776
- *
8777
- * @summary Search customer by login
8778
- * @param {string} query
8779
- * @param {*} [options] Override http request option.
8780
- * @throws {RequiredError}
8781
- */
8782
- searchCustomer(query: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<CustomerProfile>;
8783
- /**
8784
- *
8785
- * @summary Update customer names
8786
- * @param {CustomerNames} body
8787
- * @param {*} [options] Override http request option.
8788
- * @throws {RequiredError}
8789
- */
8790
- updateCustomerNames(body: CustomerNames, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Response>;
8791
- };
8792
- /**
8793
- * CustomersApi - factory interface
8794
- * @export
8795
- */
8796
- export declare const CustomersApiFactory: (configuration?: Configuration, fetch?: FetchAPI, basePath?: string) => {
8797
- /**
8798
- *
8799
- * @summary Add new address
8800
- * @param {CustomerAddressForm} body
8801
- * @param {*} [options] Override http request option.
8802
- * @throws {RequiredError}
8803
- */
8804
- addAddress(body: CustomerAddressForm, options?: any): Promise<Response>;
8805
- /**
8806
- *
8807
- * @summary Add uncofirmed login
8808
- * @param {CustomerLoginForm} body
8809
- * @param {*} [options] Override http request option.
8810
- * @throws {RequiredError}
8811
- */
8812
- addLogin(body: CustomerLoginForm, options?: any): Promise<Response>;
8813
- /**
8814
- *
8815
- * @summary Add or replace pin to Vault
8816
- * @param {PinForm} body
8817
- * @param {*} [options] Override http request option.
8818
- * @throws {RequiredError}
8819
- */
8820
- addPin(body: PinForm, options?: any): Promise<Response>;
8821
- /**
8822
- *
8823
- * @summary Confirm the new login (either email or phone number)
8824
- * @param {CustomerLoginConfirmForm} body
8825
- * @param {*} [options] Override http request option.
8826
- * @throws {RequiredError}
8827
- */
8828
- confirmLogin(body: CustomerLoginConfirmForm, options?: any): Promise<Response>;
8829
- /**
8830
- *
8831
- * @summary Confirm an email/number while signing in
8832
- * @param {CustomerSignInConfirm} body
8833
- * @param {*} [options] Override http request option.
8834
- * @throws {RequiredError}
8835
- */
8836
- confirmSignIn(body: CustomerSignInConfirm, options?: any): Promise<CustomerCtx>;
8837
- /**
8838
- *
8839
- * @summary Confirm an email/number while signing up
8840
- * @param {CustomerSignUpConfirm} body
8841
- * @param {*} [options] Override http request option.
8842
- * @throws {RequiredError}
8843
- */
8844
- confirmSignUp(body: CustomerSignUpConfirm, options?: any): Promise<CustomerCtx>;
8845
- /**
8846
- *
8847
- * @summary Create lead for org
8848
- * @param {LeadRequest} body
8849
- * @param {*} [options] Override http request option.
8850
- * @throws {RequiredError}
8851
- */
8852
- createLead(body: LeadRequest, options?: any): Promise<LeadCtx>;
8853
- /**
8854
- *
8855
- * @summary Anonymize customer profile
8856
- * @param {string} customerId
8857
- * @param {*} [options] Override http request option.
8858
- * @throws {RequiredError}
8859
- */
8860
- deleteCustomerDeprecated(customerId: string, options?: any): Promise<Response>;
8861
- /**
8862
- *
8863
- * @summary Get list of customer addresses
8864
- * @param {*} [options] Override http request option.
8865
- * @throws {RequiredError}
8866
- */
8867
- getAddresses(options?: any): Promise<CustomerAddress[]>;
8868
- /**
8869
- *
8870
- * @summary Get customer logins
8871
- * @param {*} [options] Override http request option.
8872
- * @throws {RequiredError}
8873
- */
8874
- getCustomerLogins(options?: any): Promise<CustomerLogin[]>;
8875
- /**
8876
- *
8877
- * @summary Get customer profile by id
8878
- * @param {string} customerId
8879
- * @param {*} [options] Override http request option.
8880
- * @throws {RequiredError}
8881
- */
8882
- getCustomerProfile(customerId: string, options?: any): Promise<CustomerProfile>;
8883
- /**
8884
- *
8885
- * @summary Get own customer profile
8886
- * @param {*} [options] Override http request option.
8887
- * @throws {RequiredError}
8888
- */
8889
- getOwnCustomerProfile(options?: any): Promise<CustomerCtx>;
8890
- /**
8891
- *
8892
- * @summary Generate and get vault token
8893
- * @param {PinForm} body
8894
- * @param {*} [options] Override http request option.
8895
- * @throws {RequiredError}
8896
- */
8897
- getVaultToken(body: PinForm, options?: any): Promise<XVaultToken>;
8898
- /**
8899
- *
8900
- * @summary Request confirmation code to sign in
8901
- * @param {CustomerSignInForm} body
8902
- * @param {*} [options] Override http request option.
8903
- * @throws {RequiredError}
8904
- */
8905
- requestSignIn(body: CustomerSignInForm, options?: any): Promise<Response>;
8906
- /**
8907
- *
8908
- * @summary Request confirmation code to sign up
8909
- * @param {CustomerSignUpForm} body
8910
- * @param {*} [options] Override http request option.
8911
- * @throws {RequiredError}
8912
- */
8913
- requestSignUp(body: CustomerSignUpForm, options?: any): Promise<Response>;
8914
- /**
8915
- *
8916
- * @summary Search customer by login
8917
- * @param {string} query
8918
- * @param {*} [options] Override http request option.
8919
- * @throws {RequiredError}
8920
- */
8921
- searchCustomer(query: string, options?: any): Promise<CustomerProfile>;
8922
- /**
8923
- *
8924
- * @summary Update customer names
8925
- * @param {CustomerNames} body
8926
- * @param {*} [options] Override http request option.
8927
- * @throws {RequiredError}
8928
- */
8929
- updateCustomerNames(body: CustomerNames, options?: any): Promise<Response>;
8930
- };
8931
- /**
8932
- * CustomersApi - object-oriented interface
8933
- * @export
8934
- * @class CustomersApi
8935
- * @extends {BaseAPI}
8936
- */
8937
- export declare class CustomersApi extends BaseAPI {
8938
- /**
8939
- *
8940
- * @summary Add new address
8941
- * @param {CustomerAddressForm} body
8942
- * @param {*} [options] Override http request option.
8943
- * @throws {RequiredError}
8944
- * @memberof CustomersApi
8945
- */
8946
- addAddress(body: CustomerAddressForm, options?: any): Promise<Response>;
8947
- /**
8948
- *
8949
- * @summary Add uncofirmed login
8950
- * @param {CustomerLoginForm} body
8951
- * @param {*} [options] Override http request option.
8952
- * @throws {RequiredError}
8953
- * @memberof CustomersApi
8954
- */
8955
- addLogin(body: CustomerLoginForm, options?: any): Promise<Response>;
8956
- /**
8957
- *
8958
- * @summary Add or replace pin to Vault
8959
- * @param {PinForm} body
8960
- * @param {*} [options] Override http request option.
8961
- * @throws {RequiredError}
8962
- * @memberof CustomersApi
8963
- */
8964
- addPin(body: PinForm, options?: any): Promise<Response>;
8965
- /**
8966
- *
8967
- * @summary Confirm the new login (either email or phone number)
8968
- * @param {CustomerLoginConfirmForm} body
8969
- * @param {*} [options] Override http request option.
8970
- * @throws {RequiredError}
8971
- * @memberof CustomersApi
8972
- */
8973
- confirmLogin(body: CustomerLoginConfirmForm, options?: any): Promise<Response>;
8974
- /**
8975
- *
8976
- * @summary Confirm an email/number while signing in
8977
- * @param {CustomerSignInConfirm} body
8978
- * @param {*} [options] Override http request option.
8979
- * @throws {RequiredError}
8980
- * @memberof CustomersApi
8981
- */
8982
- confirmSignIn(body: CustomerSignInConfirm, options?: any): Promise<CustomerCtx>;
8983
- /**
8984
- *
8985
- * @summary Confirm an email/number while signing up
8986
- * @param {CustomerSignUpConfirm} body
8987
- * @param {*} [options] Override http request option.
8988
- * @throws {RequiredError}
8989
- * @memberof CustomersApi
8990
- */
8991
- confirmSignUp(body: CustomerSignUpConfirm, options?: any): Promise<CustomerCtx>;
8992
- /**
8993
- *
8994
- * @summary Create lead for org
8995
- * @param {LeadRequest} body
8996
- * @param {*} [options] Override http request option.
8997
- * @throws {RequiredError}
8998
- * @memberof CustomersApi
8999
- */
9000
- createLead(body: LeadRequest, options?: any): Promise<LeadCtx>;
9001
- /**
9002
- *
9003
- * @summary Anonymize customer profile
9004
- * @param {string} customerId
9005
- * @param {*} [options] Override http request option.
9006
- * @throws {RequiredError}
9007
- * @memberof CustomersApi
9008
- */
9009
- deleteCustomerDeprecated(customerId: string, options?: any): Promise<Response>;
9010
- /**
9011
- *
9012
- * @summary Get list of customer addresses
9013
- * @param {*} [options] Override http request option.
9014
- * @throws {RequiredError}
9015
- * @memberof CustomersApi
9016
- */
9017
- getAddresses(options?: any): Promise<CustomerAddress[]>;
9018
- /**
9019
- *
9020
- * @summary Get customer logins
9021
- * @param {*} [options] Override http request option.
9022
- * @throws {RequiredError}
9023
- * @memberof CustomersApi
9024
- */
9025
- getCustomerLogins(options?: any): Promise<CustomerLogin[]>;
9026
- /**
9027
- *
9028
- * @summary Get customer profile by id
9029
- * @param {string} customerId
9030
- * @param {*} [options] Override http request option.
9031
- * @throws {RequiredError}
9032
- * @memberof CustomersApi
9033
- */
9034
- getCustomerProfile(customerId: string, options?: any): Promise<CustomerProfile>;
9035
- /**
9036
- *
9037
- * @summary Get own customer profile
9038
- * @param {*} [options] Override http request option.
9039
- * @throws {RequiredError}
9040
- * @memberof CustomersApi
9041
- */
9042
- getOwnCustomerProfile(options?: any): Promise<CustomerCtx>;
9043
- /**
9044
- *
9045
- * @summary Generate and get vault token
9046
- * @param {PinForm} body
9047
- * @param {*} [options] Override http request option.
9048
- * @throws {RequiredError}
9049
- * @memberof CustomersApi
9050
- */
9051
- getVaultToken(body: PinForm, options?: any): Promise<XVaultToken>;
9052
- /**
9053
- *
9054
- * @summary Request confirmation code to sign in
9055
- * @param {CustomerSignInForm} body
9056
- * @param {*} [options] Override http request option.
9057
- * @throws {RequiredError}
9058
- * @memberof CustomersApi
9059
- */
9060
- requestSignIn(body: CustomerSignInForm, options?: any): Promise<Response>;
9061
- /**
9062
- *
9063
- * @summary Request confirmation code to sign up
9064
- * @param {CustomerSignUpForm} body
9065
- * @param {*} [options] Override http request option.
9066
- * @throws {RequiredError}
9067
- * @memberof CustomersApi
9068
- */
9069
- requestSignUp(body: CustomerSignUpForm, options?: any): Promise<Response>;
9070
- /**
9071
- *
9072
- * @summary Search customer by login
9073
- * @param {string} query
9074
- * @param {*} [options] Override http request option.
9075
- * @throws {RequiredError}
9076
- * @memberof CustomersApi
9077
- */
9078
- searchCustomer(query: string, options?: any): Promise<CustomerProfile>;
9079
- /**
9080
- *
9081
- * @summary Update customer names
9082
- * @param {CustomerNames} body
9083
- * @param {*} [options] Override http request option.
9084
- * @throws {RequiredError}
9085
- * @memberof CustomersApi
9086
- */
9087
- updateCustomerNames(body: CustomerNames, options?: any): Promise<Response>;
9088
- }
9089
8514
  /**
9090
8515
  * EventActionsApi - fetch parameter creator
9091
8516
  * @export
@@ -11402,13 +10827,6 @@ export declare const OrgsApiFetchParamCreator: (configuration?: Configuration) =
11402
10827
  * @throws {RequiredError}
11403
10828
  */
11404
10829
  getOrganizationConfig(id: string, options?: any): FetchArgs;
11405
- /**
11406
- *
11407
- * @summary Retrieve data of all orgs
11408
- * @param {*} [options] Override http request option.
11409
- * @throws {RequiredError}
11410
- */
11411
- getOrgs(options?: any): FetchArgs;
11412
10830
  /**
11413
10831
  *
11414
10832
  * @summary Get maxCharacters limit for messages handled by autoresponder
@@ -11628,13 +11046,6 @@ export declare const OrgsApiFp: (configuration?: Configuration) => {
11628
11046
  * @throws {RequiredError}
11629
11047
  */
11630
11048
  getOrganizationConfig(id: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<OrgConfig>;
11631
- /**
11632
- *
11633
- * @summary Retrieve data of all orgs
11634
- * @param {*} [options] Override http request option.
11635
- * @throws {RequiredError}
11636
- */
11637
- getOrgs(options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Array<OrganizationSummary>>;
11638
11049
  /**
11639
11050
  *
11640
11051
  * @summary Get maxCharacters limit for messages handled by autoresponder
@@ -11854,13 +11265,6 @@ export declare const OrgsApiFactory: (configuration?: Configuration, fetch?: Fet
11854
11265
  * @throws {RequiredError}
11855
11266
  */
11856
11267
  getOrganizationConfig(id: string, options?: any): Promise<OrgConfig>;
11857
- /**
11858
- *
11859
- * @summary Retrieve data of all orgs
11860
- * @param {*} [options] Override http request option.
11861
- * @throws {RequiredError}
11862
- */
11863
- getOrgs(options?: any): Promise<OrganizationSummary[]>;
11864
11268
  /**
11865
11269
  *
11866
11270
  * @summary Get maxCharacters limit for messages handled by autoresponder
@@ -12103,14 +11507,6 @@ export declare class OrgsApi extends BaseAPI {
12103
11507
  * @memberof OrgsApi
12104
11508
  */
12105
11509
  getOrganizationConfig(id: string, options?: any): Promise<OrgConfig>;
12106
- /**
12107
- *
12108
- * @summary Retrieve data of all orgs
12109
- * @param {*} [options] Override http request option.
12110
- * @throws {RequiredError}
12111
- * @memberof OrgsApi
12112
- */
12113
- getOrgs(options?: any): Promise<OrganizationSummary[]>;
12114
11510
  /**
12115
11511
  *
12116
11512
  * @summary Get maxCharacters limit for messages handled by autoresponder