@hosterai/types 0.0.33 → 0.0.35
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/dtos/action.dto.js +1 -1
- package/dist/dtos/country.dto.js +1 -2
- package/dist/dtos/field.dto.js +1 -2
- package/dist/dtos/info.dto.js +3 -3
- package/dist/dtos/multilang-text.dto.js +1 -2
- package/dist/dtos/notification/notification-info.dto.js +1 -2
- package/dist/dtos/product/product-info.dto.js +1 -1
- package/dist/openapi/schemas/components.schemas.d.ts +48 -68
- package/dist/openapi/schemas/components.schemas.js +754 -1804
- package/dist/openapi/schemas/components.schemas.spec.d.ts +1 -0
- package/dist/openapi/schemas/components.schemas.spec.js +122 -0
- package/package.json +1 -1
package/dist/dtos/action.dto.js
CHANGED
|
@@ -52,7 +52,7 @@ __decorate([
|
|
|
52
52
|
(0, class_validator_jsonschema_1.JSONSchema)({
|
|
53
53
|
title: 'Open Method',
|
|
54
54
|
description: "Method by which the action's URL should be opened.",
|
|
55
|
-
|
|
55
|
+
$ref: '#/components/schemas/OpenMethodEnum',
|
|
56
56
|
}),
|
|
57
57
|
__metadata("design:type", String)
|
|
58
58
|
], ActionDto.prototype, "openMethod", void 0);
|
package/dist/dtos/country.dto.js
CHANGED
|
@@ -35,8 +35,7 @@ __decorate([
|
|
|
35
35
|
(0, class_validator_jsonschema_1.JSONSchema)({
|
|
36
36
|
title: 'Code',
|
|
37
37
|
description: 'Country code.',
|
|
38
|
-
|
|
39
|
-
enum: Object.values(country_enum_1.CountryEnum),
|
|
38
|
+
$ref: '#/components/schemas/CountryEnum',
|
|
40
39
|
}),
|
|
41
40
|
__metadata("design:type", String)
|
|
42
41
|
], CountryDto.prototype, "code", void 0);
|
package/dist/dtos/field.dto.js
CHANGED
|
@@ -89,8 +89,7 @@ __decorate([
|
|
|
89
89
|
(0, class_validator_jsonschema_1.JSONSchema)({
|
|
90
90
|
title: 'Field Type',
|
|
91
91
|
description: 'Type of the field.',
|
|
92
|
-
|
|
93
|
-
enum: Object.values(field_type_enum_1.FieldTypeEnum),
|
|
92
|
+
$ref: '#/components/schemas/FieldTypeEnum',
|
|
94
93
|
}),
|
|
95
94
|
__metadata("design:type", String)
|
|
96
95
|
], FieldDto.prototype, "type", void 0);
|
package/dist/dtos/info.dto.js
CHANGED
|
@@ -75,7 +75,7 @@ __decorate([
|
|
|
75
75
|
title: 'Supported Languages',
|
|
76
76
|
description: 'Locales supported by the integration.',
|
|
77
77
|
type: 'array',
|
|
78
|
-
items: {
|
|
78
|
+
items: { $ref: '#/components/schemas/LanguageEnum' },
|
|
79
79
|
example: ['EN'],
|
|
80
80
|
}),
|
|
81
81
|
__metadata("design:type", Array)
|
|
@@ -89,7 +89,7 @@ __decorate([
|
|
|
89
89
|
title: 'Listen Events',
|
|
90
90
|
description: 'Platform events the integration can subscribe to.',
|
|
91
91
|
type: 'array',
|
|
92
|
-
items: {
|
|
92
|
+
items: { $ref: '#/components/schemas/EventsEnum' },
|
|
93
93
|
}),
|
|
94
94
|
__metadata("design:type", Array)
|
|
95
95
|
], InfoDto.prototype, "listenEvents", void 0);
|
|
@@ -102,7 +102,7 @@ __decorate([
|
|
|
102
102
|
title: 'Required Roles',
|
|
103
103
|
description: 'Roles required for this integration to operate.',
|
|
104
104
|
type: 'array',
|
|
105
|
-
items: {
|
|
105
|
+
items: { $ref: '#/components/schemas/RolesEnum' },
|
|
106
106
|
}),
|
|
107
107
|
__metadata("design:type", Array)
|
|
108
108
|
], InfoDto.prototype, "requiredRoles", void 0);
|
|
@@ -26,8 +26,7 @@ __decorate([
|
|
|
26
26
|
(0, class_validator_jsonschema_1.JSONSchema)({
|
|
27
27
|
title: 'Language',
|
|
28
28
|
description: 'The language of the text.',
|
|
29
|
-
|
|
30
|
-
enum: Object.values(language_enum_1.LanguageEnum),
|
|
29
|
+
$ref: '#/components/schemas/LanguageEnum',
|
|
31
30
|
}),
|
|
32
31
|
__metadata("design:type", String)
|
|
33
32
|
], MultilangTextDto.prototype, "language", void 0);
|
|
@@ -29,8 +29,7 @@ __decorate([
|
|
|
29
29
|
(0, class_validator_jsonschema_1.JSONSchema)({
|
|
30
30
|
title: 'Notification Type',
|
|
31
31
|
description: 'Notification channel type.',
|
|
32
|
-
|
|
33
|
-
enum: Object.values(notification_message_type_enum_1.NotificationMessageTypeEnum),
|
|
32
|
+
$ref: '#/components/schemas/NotificationMessageTypeEnum',
|
|
34
33
|
example: Object.values(notification_message_type_enum_1.NotificationMessageTypeEnum)[0],
|
|
35
34
|
}),
|
|
36
35
|
__metadata("design:type", String)
|
|
@@ -104,7 +104,7 @@ __decorate([
|
|
|
104
104
|
title: 'Supported Actions',
|
|
105
105
|
description: 'Actions supported by this integration.',
|
|
106
106
|
type: 'array',
|
|
107
|
-
items: {
|
|
107
|
+
items: { $ref: '#/components/schemas/ProductActionsEnum' },
|
|
108
108
|
}),
|
|
109
109
|
__metadata("design:type", Array)
|
|
110
110
|
], ProductInfoDto.prototype, "supportedActions", void 0);
|
|
@@ -8,10 +8,7 @@ export declare const ComponentsSchemas: {
|
|
|
8
8
|
readonly description: "Country name.";
|
|
9
9
|
};
|
|
10
10
|
readonly code: {
|
|
11
|
-
readonly
|
|
12
|
-
readonly type: "string";
|
|
13
|
-
readonly title: "Code";
|
|
14
|
-
readonly description: "Country code.";
|
|
11
|
+
readonly $ref: "#/components/schemas/CountryEnum";
|
|
15
12
|
};
|
|
16
13
|
readonly isEurope: {
|
|
17
14
|
readonly type: "boolean";
|
|
@@ -55,11 +52,7 @@ export declare const ComponentsSchemas: {
|
|
|
55
52
|
readonly description: "Text label for the action.";
|
|
56
53
|
};
|
|
57
54
|
readonly openMethod: {
|
|
58
|
-
readonly
|
|
59
|
-
readonly type: "string";
|
|
60
|
-
readonly enum: readonly ["ajax_call", "small_iframe", "medium_iframe", "large_iframe"];
|
|
61
|
-
readonly title: "Open Method";
|
|
62
|
-
readonly description: "Method by which the action's URL should be opened.";
|
|
55
|
+
readonly $ref: "#/components/schemas/OpenMethodEnum";
|
|
63
56
|
};
|
|
64
57
|
readonly url: {
|
|
65
58
|
readonly minLength: 1;
|
|
@@ -339,13 +332,9 @@ export declare const ComponentsSchemas: {
|
|
|
339
332
|
readonly properties: {
|
|
340
333
|
readonly tabs: {
|
|
341
334
|
readonly $ref: "#/components/schemas/AdminPanelTabsDto";
|
|
342
|
-
readonly title: "Tabs";
|
|
343
|
-
readonly description: "Tab structure for Admin panel sections.";
|
|
344
335
|
};
|
|
345
336
|
readonly moreActions: {
|
|
346
337
|
readonly $ref: "#/components/schemas/AdminPanelMoreActionsDto";
|
|
347
|
-
readonly title: "More Actions";
|
|
348
|
-
readonly description: "Additional actions in Admin panel sections.";
|
|
349
338
|
};
|
|
350
339
|
readonly menu: {
|
|
351
340
|
readonly title: "Menu";
|
|
@@ -402,13 +391,9 @@ export declare const ComponentsSchemas: {
|
|
|
402
391
|
readonly properties: {
|
|
403
392
|
readonly tabs: {
|
|
404
393
|
readonly $ref: "#/components/schemas/ClientPanelTabsDto";
|
|
405
|
-
readonly title: "Tabs";
|
|
406
|
-
readonly description: "Tab structure for Client panel.";
|
|
407
394
|
};
|
|
408
395
|
readonly moreActions: {
|
|
409
396
|
readonly $ref: "#/components/schemas/ClientPanelMoreActionsDto";
|
|
410
|
-
readonly title: "More Actions";
|
|
411
|
-
readonly description: "Additional actions in Client panel.";
|
|
412
397
|
};
|
|
413
398
|
readonly menu: {
|
|
414
399
|
readonly title: "Menu";
|
|
@@ -425,10 +410,7 @@ export declare const ComponentsSchemas: {
|
|
|
425
410
|
readonly MultilangTextDto: {
|
|
426
411
|
readonly properties: {
|
|
427
412
|
readonly language: {
|
|
428
|
-
readonly
|
|
429
|
-
readonly type: "string";
|
|
430
|
-
readonly title: "Language";
|
|
431
|
-
readonly description: "The language of the text.";
|
|
413
|
+
readonly $ref: "#/components/schemas/LanguageEnum";
|
|
432
414
|
};
|
|
433
415
|
readonly text: {
|
|
434
416
|
readonly minLength: 1;
|
|
@@ -487,7 +469,6 @@ export declare const ComponentsSchemas: {
|
|
|
487
469
|
readonly title: "Number";
|
|
488
470
|
readonly type: "number";
|
|
489
471
|
}, {
|
|
490
|
-
readonly title: "Option";
|
|
491
472
|
readonly $ref: "#/components/schemas/FieldOptionDto";
|
|
492
473
|
}, {
|
|
493
474
|
readonly title: "Options Array";
|
|
@@ -498,10 +479,7 @@ export declare const ComponentsSchemas: {
|
|
|
498
479
|
}];
|
|
499
480
|
};
|
|
500
481
|
readonly type: {
|
|
501
|
-
readonly
|
|
502
|
-
readonly type: "string";
|
|
503
|
-
readonly title: "Field Type";
|
|
504
|
-
readonly description: "Type of the field.";
|
|
482
|
+
readonly $ref: "#/components/schemas/FieldTypeEnum";
|
|
505
483
|
};
|
|
506
484
|
readonly required: {
|
|
507
485
|
readonly type: "boolean";
|
|
@@ -581,8 +559,7 @@ export declare const ComponentsSchemas: {
|
|
|
581
559
|
};
|
|
582
560
|
readonly supportedLanguages: {
|
|
583
561
|
readonly items: {
|
|
584
|
-
readonly
|
|
585
|
-
readonly type: "string";
|
|
562
|
+
readonly $ref: "#/components/schemas/LanguageEnum";
|
|
586
563
|
};
|
|
587
564
|
readonly minItems: 1;
|
|
588
565
|
readonly type: "array";
|
|
@@ -592,8 +569,7 @@ export declare const ComponentsSchemas: {
|
|
|
592
569
|
};
|
|
593
570
|
readonly listenEvents: {
|
|
594
571
|
readonly items: {
|
|
595
|
-
readonly
|
|
596
|
-
readonly type: "string";
|
|
572
|
+
readonly $ref: "#/components/schemas/EventsEnum";
|
|
597
573
|
};
|
|
598
574
|
readonly minItems: 1;
|
|
599
575
|
readonly type: "array";
|
|
@@ -602,8 +578,7 @@ export declare const ComponentsSchemas: {
|
|
|
602
578
|
};
|
|
603
579
|
readonly requiredRoles: {
|
|
604
580
|
readonly items: {
|
|
605
|
-
readonly
|
|
606
|
-
readonly type: "string";
|
|
581
|
+
readonly $ref: "#/components/schemas/RolesEnum";
|
|
607
582
|
};
|
|
608
583
|
readonly minItems: 1;
|
|
609
584
|
readonly type: "array";
|
|
@@ -612,13 +587,9 @@ export declare const ComponentsSchemas: {
|
|
|
612
587
|
};
|
|
613
588
|
readonly adminPanel: {
|
|
614
589
|
readonly $ref: "#/components/schemas/AdminPanelDto";
|
|
615
|
-
readonly title: "Admin Panel";
|
|
616
|
-
readonly description: "Admin UI links, tabs, and actions provided by the integration.";
|
|
617
590
|
};
|
|
618
591
|
readonly clientPanel: {
|
|
619
592
|
readonly $ref: "#/components/schemas/ClientPanelDto";
|
|
620
|
-
readonly title: "Client Panel";
|
|
621
|
-
readonly description: "Client UI links, tabs, and actions provided by the integration.";
|
|
622
593
|
};
|
|
623
594
|
readonly onboardingUrl: {
|
|
624
595
|
readonly format: "uri";
|
|
@@ -670,11 +641,7 @@ export declare const ComponentsSchemas: {
|
|
|
670
641
|
readonly NotificationInfoDto: {
|
|
671
642
|
readonly properties: {
|
|
672
643
|
readonly type: {
|
|
673
|
-
readonly
|
|
674
|
-
readonly type: "string";
|
|
675
|
-
readonly title: "Notification Type";
|
|
676
|
-
readonly description: "Notification channel type.";
|
|
677
|
-
readonly example: "email";
|
|
644
|
+
readonly $ref: "#/components/schemas/NotificationMessageTypeEnum";
|
|
678
645
|
};
|
|
679
646
|
readonly payPerUseUnits: {
|
|
680
647
|
readonly items: {
|
|
@@ -711,8 +678,7 @@ export declare const ComponentsSchemas: {
|
|
|
711
678
|
};
|
|
712
679
|
readonly supportedLanguages: {
|
|
713
680
|
readonly items: {
|
|
714
|
-
readonly
|
|
715
|
-
readonly type: "string";
|
|
681
|
+
readonly $ref: "#/components/schemas/LanguageEnum";
|
|
716
682
|
};
|
|
717
683
|
readonly minItems: 1;
|
|
718
684
|
readonly type: "array";
|
|
@@ -722,8 +688,7 @@ export declare const ComponentsSchemas: {
|
|
|
722
688
|
};
|
|
723
689
|
readonly listenEvents: {
|
|
724
690
|
readonly items: {
|
|
725
|
-
readonly
|
|
726
|
-
readonly type: "string";
|
|
691
|
+
readonly $ref: "#/components/schemas/EventsEnum";
|
|
727
692
|
};
|
|
728
693
|
readonly minItems: 1;
|
|
729
694
|
readonly type: "array";
|
|
@@ -732,8 +697,7 @@ export declare const ComponentsSchemas: {
|
|
|
732
697
|
};
|
|
733
698
|
readonly requiredRoles: {
|
|
734
699
|
readonly items: {
|
|
735
|
-
readonly
|
|
736
|
-
readonly type: "string";
|
|
700
|
+
readonly $ref: "#/components/schemas/RolesEnum";
|
|
737
701
|
};
|
|
738
702
|
readonly minItems: 1;
|
|
739
703
|
readonly type: "array";
|
|
@@ -742,13 +706,9 @@ export declare const ComponentsSchemas: {
|
|
|
742
706
|
};
|
|
743
707
|
readonly adminPanel: {
|
|
744
708
|
readonly $ref: "#/components/schemas/AdminPanelDto";
|
|
745
|
-
readonly title: "Admin Panel";
|
|
746
|
-
readonly description: "Admin UI links, tabs, and actions provided by the integration.";
|
|
747
709
|
};
|
|
748
710
|
readonly clientPanel: {
|
|
749
711
|
readonly $ref: "#/components/schemas/ClientPanelDto";
|
|
750
|
-
readonly title: "Client Panel";
|
|
751
|
-
readonly description: "Client UI links, tabs, and actions provided by the integration.";
|
|
752
712
|
};
|
|
753
713
|
readonly onboardingUrl: {
|
|
754
714
|
readonly format: "uri";
|
|
@@ -816,7 +776,6 @@ export declare const ComponentsSchemas: {
|
|
|
816
776
|
readonly title: "Number";
|
|
817
777
|
readonly type: "number";
|
|
818
778
|
}, {
|
|
819
|
-
readonly title: "Option";
|
|
820
779
|
readonly $ref: "#/components/schemas/FieldOptionDto";
|
|
821
780
|
}, {
|
|
822
781
|
readonly title: "Options Array";
|
|
@@ -827,10 +786,7 @@ export declare const ComponentsSchemas: {
|
|
|
827
786
|
}];
|
|
828
787
|
};
|
|
829
788
|
readonly type: {
|
|
830
|
-
readonly
|
|
831
|
-
readonly type: "string";
|
|
832
|
-
readonly title: "Field Type";
|
|
833
|
-
readonly description: "Type of the field.";
|
|
789
|
+
readonly $ref: "#/components/schemas/FieldTypeEnum";
|
|
834
790
|
};
|
|
835
791
|
readonly required: {
|
|
836
792
|
readonly type: "boolean";
|
|
@@ -934,8 +890,7 @@ export declare const ComponentsSchemas: {
|
|
|
934
890
|
};
|
|
935
891
|
readonly supportedActions: {
|
|
936
892
|
readonly items: {
|
|
937
|
-
readonly
|
|
938
|
-
readonly type: "string";
|
|
893
|
+
readonly $ref: "#/components/schemas/ProductActionsEnum";
|
|
939
894
|
};
|
|
940
895
|
readonly type: "array";
|
|
941
896
|
readonly minLength: 1;
|
|
@@ -964,8 +919,7 @@ export declare const ComponentsSchemas: {
|
|
|
964
919
|
};
|
|
965
920
|
readonly supportedLanguages: {
|
|
966
921
|
readonly items: {
|
|
967
|
-
readonly
|
|
968
|
-
readonly type: "string";
|
|
922
|
+
readonly $ref: "#/components/schemas/LanguageEnum";
|
|
969
923
|
};
|
|
970
924
|
readonly minItems: 1;
|
|
971
925
|
readonly type: "array";
|
|
@@ -975,8 +929,7 @@ export declare const ComponentsSchemas: {
|
|
|
975
929
|
};
|
|
976
930
|
readonly listenEvents: {
|
|
977
931
|
readonly items: {
|
|
978
|
-
readonly
|
|
979
|
-
readonly type: "string";
|
|
932
|
+
readonly $ref: "#/components/schemas/EventsEnum";
|
|
980
933
|
};
|
|
981
934
|
readonly minItems: 1;
|
|
982
935
|
readonly type: "array";
|
|
@@ -985,8 +938,7 @@ export declare const ComponentsSchemas: {
|
|
|
985
938
|
};
|
|
986
939
|
readonly requiredRoles: {
|
|
987
940
|
readonly items: {
|
|
988
|
-
readonly
|
|
989
|
-
readonly type: "string";
|
|
941
|
+
readonly $ref: "#/components/schemas/RolesEnum";
|
|
990
942
|
};
|
|
991
943
|
readonly minItems: 1;
|
|
992
944
|
readonly type: "array";
|
|
@@ -995,13 +947,9 @@ export declare const ComponentsSchemas: {
|
|
|
995
947
|
};
|
|
996
948
|
readonly adminPanel: {
|
|
997
949
|
readonly $ref: "#/components/schemas/AdminPanelDto";
|
|
998
|
-
readonly title: "Admin Panel";
|
|
999
|
-
readonly description: "Admin UI links, tabs, and actions provided by the integration.";
|
|
1000
950
|
};
|
|
1001
951
|
readonly clientPanel: {
|
|
1002
952
|
readonly $ref: "#/components/schemas/ClientPanelDto";
|
|
1003
|
-
readonly title: "Client Panel";
|
|
1004
|
-
readonly description: "Client UI links, tabs, and actions provided by the integration.";
|
|
1005
953
|
};
|
|
1006
954
|
readonly onboardingUrl: {
|
|
1007
955
|
readonly format: "uri";
|
|
@@ -1023,4 +971,36 @@ export declare const ComponentsSchemas: {
|
|
|
1023
971
|
readonly type: "object";
|
|
1024
972
|
readonly required: readonly ["supportedActions", "title", "supportedLanguages"];
|
|
1025
973
|
};
|
|
974
|
+
readonly EventsEnum: {
|
|
975
|
+
readonly type: "string";
|
|
976
|
+
readonly enum: readonly ["user/created", "user/updated", "user/deleted", "user/banned", "user/unbanned", "user/company/access/added", "user/company/access/removed", "user/locked", "user/credit-balance/updated", "user/unlocked", "user/password/updated", "user/email/updated", "user/currency/updated", "user/invoice-contact/updated", "user/policy/updated", "user/languages/updated", "user/custom-price-policies/updated", "user/custom-addon-price-policies/updated", "user/custom-affiliate/added", "user/custom-affiliate/removed", "user/invoice-interval/updated", "user/additional-notification-email/removed", "user/additional-notification-email/added", "user/comment/added", "user/comment/removed", "user/comment/updated", "user/tags/updated", "user/setting/added", "user/setting/removed", "user/setting/updated", "user/start-selling", "user/roles/updated", "user/roles/added", "user/roles/deleted", "message/created", "message/updated", "message/deleted", "notification/sent", "policy/created", "policy/updated", "policy/deleted", "product-category/created", "product-category/updated", "product-category/deleted", "invoice-contact/created", "invoice-contact/updated", "invoice-contact/deleted", "invoice/created", "invoice/updated", "invoice/deleted", "currency/created", "currency/updated", "currency/deleted", "affiliate/created", "affiliate/updated", "affiliate/deleted", "company/created", "company/updated", "company/deleted", "organization/integration/attached", "organization/integration/detached", "tld/created", "tld/updated", "tld/deleted", "integration/created", "integration/updated", "integration/deleted", "integration/installed", "integration/uninstalled", "integration/activated", "integration/deactivated", "integration/maintenance-started", "integration/maintenance-finished", "domain-contact/created", "domain-contact/updated", "domain-contact/deleted", "domain-category/created", "domain-category/updated", "domain-category/deleted", "addon/created", "addon/updated", "addon/deleted", "transaction/created", "transaction/canceled", "transaction/failed", "transaction/subscribed", "transaction/unsubscribed", "transaction/updated", "transaction/deleted", "transaction/completed", "transaction/refunded", "template/created", "template/updated", "template/deleted", "coupon/created", "coupon/updated", "coupon/deleted", "template-integration/created", "template-integration/updated", "template-integration/deleted", "order/created", "order/status/in-progress", "order/status/completed", "order/status/canceled", "order/status/pending", "order/status/archived", "order/insufficient-balance", "order/item-detached", "order/invoice-contact-changed", "order/updated", "order/deleted", "setting/created", "setting/updated", "setting/deleted", "issue/created", "issue/updated", "issue/deleted", "task/created", "task/updated", "task/deleted", "task/canceled", "task/in-progress", "task/completed", "task/percentage/updated", "product/created", "product/updated", "product/deleted", "product/auto-renew/updated", "product/enabled", "product/disabled", "product/version-created", "ip-group/created", "ip-group/updated", "ip-group/deleted", "ip/created", "ip/updated", "ip/deleted", "domain-name/created", "domain-name/updated", "domain-name/deleted", "domain-name/locked", "domain-name/unlocked", "domain-name/idshield-activated", "domain-name/idshield-deactivated", "domain-name/bundle-added", "domain-name/bundle-removed", "domain-name/registrant-updated", "domain-name/admin-updated", "domain-name/tech-updated", "domain-name/billing-updated", "domain-name/additional-updated", "item/created", "item/updated", "item/deleted", "item/renewed", "item/upgraded", "item/downgraded", "item/ip-attached", "item/ip-detached", "item/detached-from-order", "item/postponed", "item/transferred-in", "item/canceled", "item/suspended", "item/unsuspended", "item/affiliate/added", "item/bundle/attached", "item/bundle/detached", "item/activated", "item/set-inactive", "item/processed", "item/refund-requested", "item/refund-accepted", "item/refund-rejected", "order/paid", "test", "dead-lettering", "core-queue"];
|
|
977
|
+
};
|
|
978
|
+
readonly RolesEnum: {
|
|
979
|
+
readonly type: "string";
|
|
980
|
+
readonly enum: readonly ["SIMPLE_USER", "FULL_ACCESS", "SUPER_ADMIN", "ORDER_READ", "ORDER_WRITE", "ADDON_READ", "ADDON_WRITE", "AFFILIATE_READ", "AFFILIATE_WRITE", "COMPANY_READ", "COMPANY_WRITE", "TEMPLATE_READ", "TEMPLATE_WRITE", "COUPON_READ", "COUPON_WRITE", "DOMAIN_CATEGORY_READ", "DOMAIN_CATEGORY_WRITE", "DOMAIN_CONTACT_READ", "DOMAIN_CONTACT_WRITE", "DOMAIN_NAME_READ", "DOMAIN_NAME_WRITE", "INVOICE_CONTACT_READ", "INVOICE_CONTACT_WRITE", "INVOICE_READ", "INVOICE_WRITE", "IP_GROUPS_READ", "IP_GROUPS_WRITE", "IPS_READ", "IPS_WRITE", "ITEMS_READ", "ITEMS_WRITE", "ITEM_REFUND", "ORDERS_READ", "ORDERS_WRITE", "TRANSACTIONS_READ", "TRANSACTIONS_WRITE", "POLICIES_READ", "POLICIES_WRITE", "PRODUCT_CATEGORIES_READ", "PRODUCT_CATEGORIES_WRITE", "PRODUCTS_READ", "PRODUCTS_WRITE", "SETTINGS_READ", "SETTINGS_WRITE", "INTEGRATIONS_READ", "INTEGRATIONS_WRITE", "TLDS_READ", "TLDS_WRITE", "USERS_READ", "USERS_WRITE", "ISSUES_WRITE", "ISSUES_READ", "ACTION_LOGS_READ"];
|
|
981
|
+
};
|
|
982
|
+
readonly LanguageEnum: {
|
|
983
|
+
readonly type: "string";
|
|
984
|
+
readonly enum: readonly ["AB", "AA", "AF", "AK", "SQ", "AM", "AR", "AN", "HY", "AS", "AV", "AE", "AY", "AZ", "BM", "BA", "EU", "BE", "BN", "BI", "BS", "BR", "BG", "MY", "CA", "KM", "CH", "CE", "NY", "ZH", "CU", "CV", "KW", "CO", "CR", "HR", "CS", "DA", "DV", "NL", "DZ", "EN", "EO", "ET", "EE", "FO", "FJ", "FI", "FR", "FF", "GL", "LG", "KA", "DE", "EL", "GN", "GU", "HT", "HA", "HE", "HZ", "HI", "HO", "HU", "IS", "IO", "IG", "ID", "IA", "IE", "IU", "IK", "GA", "IT", "JA", "JV", "KL", "KN", "KR", "KS", "KK", "KI", "RW", "KY", "KV", "KG", "KO", "KJ", "KU", "LO", "LA", "LV", "LI", "LN", "LT", "LU", "LB", "MK", "MG", "MS", "ML", "MT", "GV", "MI", "MR", "MH", "MN", "NA", "NV", "ND", "NR", "NG", "NE", "SE", "NO", "NB", "NN", "II", "OC", "OJ", "OR", "OM", "OS", "PI", "PS", "FA", "PL", "PT", "PA", "QU", "RO", "RM", "RN", "RU", "SM", "SG", "SA", "SC", "GD", "SR", "SN", "II", "SD", "SI", "SK", "SL", "SO", "ST", "ES", "SU", "SW", "SS", "SV", "TL", "TY", "TG", "TA", "TT", "TE", "TH", "BO", "TI", "TO", "TS", "TN", "TR", "TK", "TW", "UG", "UK", "UR", "UZ", "VE", "VI", "VO", "WA", "CY", "FY", "WO", "XH", "YI", "YO", "ZA", "ZU"];
|
|
985
|
+
};
|
|
986
|
+
readonly CountryEnum: {
|
|
987
|
+
readonly type: "string";
|
|
988
|
+
readonly enum: readonly ["AF", "AX", "AL", "DZ", "AS", "AD", "AO", "AI", "AQ", "AG", "AR", "AM", "AW", "AU", "AT", "AZ", "BS", "BH", "BD", "BB", "BY", "BE", "BZ", "BJ", "BM", "BT", "BO", "BQ", "BA", "BW", "BV", "BR", "IO", "BN", "BG", "BF", "BI", "KH", "CM", "CA", "CV", "KY", "CF", "TD", "CL", "CN", "CX", "CC", "CO", "KM", "CG", "CD", "CK", "CR", "CI", "HR", "CU", "CW", "CY", "CZ", "DK", "DJ", "DM", "DO", "EC", "EG", "SV", "GQ", "ER", "EE", "ET", "FK", "FO", "FJ", "FI", "FR", "GF", "PF", "TF", "GA", "GM", "GE", "DE", "GH", "GI", "GR", "GL", "GD", "GP", "GU", "GT", "GG", "GN", "GW", "GY", "HT", "HM", "VA", "HN", "HK", "HU", "IS", "IN", "ID", "IR", "IQ", "IE", "IM", "IL", "IT", "JM", "JP", "JE", "JO", "KZ", "KE", "KI", "KP", "KR", "KW", "KG", "LA", "LV", "LB", "LS", "LR", "LY", "LI", "LT", "LU", "MO", "MK", "MG", "MW", "MY", "MV", "ML", "MT", "MH", "MQ", "MR", "MU", "TN", "TR", "TM", "TC", "TV", "UG", "UA", "AE", "GB", "US", "UM", "UY", "UZ", "VU", "VE", "VN", "VG", "VI", "WF", "EH", "YE", "ZM", "ZW", "YT", "MX", "FM", "MD", "MC", "MN", "ME", "MS", "MA", "MZ", "MM", "NA", "NR", "NP", "NL", "NC", "NZ", "NI", "NE", "NG", "NU", "NF", "MP", "NO", "OM", "PK", "PW", "PS", "PA", "PG", "PY", "PE", "PH", "PN", "PL", "PT", "PR", "QA", "RE", "RO", "RU", "RW", "BL", "SH", "KN", "LC", "MF", "PM", "VC", "WS", "SM", "ST", "SA", "SN", "RS", "SC", "SL", "SG", "SX", "SK", "SI", "SB", "SO", "ZA", "GS", "SS", "ES", "LK", "SD", "SR", "SJ", "SZ", "SE", "CH", "SY", "TW", "TJ", "TZ", "TH", "TL", "TG", "TK", "TO", "TT"];
|
|
989
|
+
};
|
|
990
|
+
readonly FieldTypeEnum: {
|
|
991
|
+
readonly type: "string";
|
|
992
|
+
readonly enum: readonly ["TEXT_BOX", "TEXT_AREA", "SELECT", "MULTI_SELECT", "DESCRIPTION", "RADIO_BOX", "CHECKBOX", "SLIDER"];
|
|
993
|
+
};
|
|
994
|
+
readonly ProductActionsEnum: {
|
|
995
|
+
readonly type: "string";
|
|
996
|
+
readonly enum: readonly ["CREATE", "RENEW", "UPGRADE", "DOWNGRADE", "TRANSFER", "TRADE", "SUSPEND", "UNSUSPEND", "DELETE"];
|
|
997
|
+
};
|
|
998
|
+
readonly OpenMethodEnum: {
|
|
999
|
+
readonly type: "string";
|
|
1000
|
+
readonly enum: readonly ["ajax_call", "small_iframe", "medium_iframe", "large_iframe"];
|
|
1001
|
+
};
|
|
1002
|
+
readonly NotificationMessageTypeEnum: {
|
|
1003
|
+
readonly type: "string";
|
|
1004
|
+
readonly enum: readonly ["email", "sms", "push"];
|
|
1005
|
+
};
|
|
1026
1006
|
};
|