@microsoft/msgraph-sdk-domains 1.0.0-preview.10

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 (65) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +11 -0
  3. package/domains/count/index.d.ts +40 -0
  4. package/domains/count/index.d.ts.map +1 -0
  5. package/domains/count/index.js +35 -0
  6. package/domains/index.d.ts +97 -0
  7. package/domains/index.d.ts.map +1 -0
  8. package/domains/index.js +71 -0
  9. package/domains/item/domainNameReferences/count/index.d.ts +40 -0
  10. package/domains/item/domainNameReferences/count/index.d.ts.map +1 -0
  11. package/domains/item/domainNameReferences/count/index.js +35 -0
  12. package/domains/item/domainNameReferences/index.d.ts +82 -0
  13. package/domains/item/domainNameReferences/index.d.ts.map +1 -0
  14. package/domains/item/domainNameReferences/index.js +58 -0
  15. package/domains/item/domainNameReferences/item/index.d.ts +41 -0
  16. package/domains/item/domainNameReferences/item/index.d.ts.map +1 -0
  17. package/domains/item/domainNameReferences/item/index.js +36 -0
  18. package/domains/item/federationConfiguration/count/index.d.ts +40 -0
  19. package/domains/item/federationConfiguration/count/index.d.ts.map +1 -0
  20. package/domains/item/federationConfiguration/count/index.js +35 -0
  21. package/domains/item/federationConfiguration/index.d.ts +97 -0
  22. package/domains/item/federationConfiguration/index.d.ts.map +1 -0
  23. package/domains/item/federationConfiguration/index.js +70 -0
  24. package/domains/item/federationConfiguration/item/index.d.ts +69 -0
  25. package/domains/item/federationConfiguration/item/index.d.ts.map +1 -0
  26. package/domains/item/federationConfiguration/item/index.js +56 -0
  27. package/domains/item/forceDelete/index.d.ts +59 -0
  28. package/domains/item/forceDelete/index.d.ts.map +1 -0
  29. package/domains/item/forceDelete/index.js +58 -0
  30. package/domains/item/index.d.ts +108 -0
  31. package/domains/item/index.d.ts.map +1 -0
  32. package/domains/item/index.js +100 -0
  33. package/domains/item/promote/index.d.ts +58 -0
  34. package/domains/item/promote/index.d.ts.map +1 -0
  35. package/domains/item/promote/index.js +56 -0
  36. package/domains/item/serviceConfigurationRecords/count/index.d.ts +40 -0
  37. package/domains/item/serviceConfigurationRecords/count/index.d.ts.map +1 -0
  38. package/domains/item/serviceConfigurationRecords/count/index.js +35 -0
  39. package/domains/item/serviceConfigurationRecords/index.d.ts +96 -0
  40. package/domains/item/serviceConfigurationRecords/index.d.ts.map +1 -0
  41. package/domains/item/serviceConfigurationRecords/index.js +70 -0
  42. package/domains/item/serviceConfigurationRecords/item/index.d.ts +66 -0
  43. package/domains/item/serviceConfigurationRecords/item/index.d.ts.map +1 -0
  44. package/domains/item/serviceConfigurationRecords/item/index.js +56 -0
  45. package/domains/item/verificationDnsRecords/count/index.d.ts +40 -0
  46. package/domains/item/verificationDnsRecords/count/index.d.ts.map +1 -0
  47. package/domains/item/verificationDnsRecords/count/index.js +35 -0
  48. package/domains/item/verificationDnsRecords/index.d.ts +96 -0
  49. package/domains/item/verificationDnsRecords/index.d.ts.map +1 -0
  50. package/domains/item/verificationDnsRecords/index.js +70 -0
  51. package/domains/item/verificationDnsRecords/item/index.d.ts +66 -0
  52. package/domains/item/verificationDnsRecords/item/index.d.ts.map +1 -0
  53. package/domains/item/verificationDnsRecords/item/index.js +56 -0
  54. package/domains/item/verify/index.d.ts +29 -0
  55. package/domains/item/verify/index.d.ts.map +1 -0
  56. package/domains/item/verify/index.js +28 -0
  57. package/domainsServiceClient.d.ts +25 -0
  58. package/domainsServiceClient.d.ts.map +1 -0
  59. package/domainsServiceClient.js +49 -0
  60. package/index.d.ts +11 -0
  61. package/index.d.ts.map +1 -0
  62. package/index.js +20 -0
  63. package/package.json +48 -0
  64. package/tsconfig.json +15 -0
  65. package/tsconfig.tsbuildinfo +1 -0
@@ -0,0 +1,35 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CountRequestBuilderUriTemplate = exports.CountRequestBuilderRequestsMetadata = void 0;
4
+ /* tslint:disable */
5
+ /* eslint-disable */
6
+ // Generated by Microsoft Kiota
7
+ const oDataErrors_1 = require("@microsoft/msgraph-sdk/models/oDataErrors/");
8
+ /**
9
+ * Mapper for query parameters from symbol name to serialization name represented as a constant.
10
+ */
11
+ const CountRequestBuilderGetQueryParametersMapper = {
12
+ "filter": "%24filter",
13
+ "search": "%24search",
14
+ };
15
+ /**
16
+ * Metadata for all the requests in the request builder.
17
+ */
18
+ exports.CountRequestBuilderRequestsMetadata = {
19
+ get: {
20
+ responseBodyContentType: "text/plain;q=0.9",
21
+ errorMappings: {
22
+ _4XX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
23
+ _5XX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
24
+ },
25
+ adapterMethodName: "sendPrimitiveAsync",
26
+ responseBodyFactory: "number",
27
+ queryParametersMapper: CountRequestBuilderGetQueryParametersMapper,
28
+ },
29
+ };
30
+ /**
31
+ * Uri template for the request builder.
32
+ */
33
+ exports.CountRequestBuilderUriTemplate = "{+baseurl}/domains/{domain%2Did}/federationConfiguration/$count{?%24search,%24filter}";
34
+ /* tslint:enable */
35
+ /* eslint-enable */
@@ -0,0 +1,97 @@
1
+ import { type InternalDomainFederation, type InternalDomainFederationCollectionResponse } from '@microsoft/msgraph-sdk/models/';
2
+ import { type CountRequestBuilder } from './count/';
3
+ import { type InternalDomainFederationItemRequestBuilder } from './item/';
4
+ import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
5
+ /**
6
+ * Provides operations to manage the federationConfiguration property of the microsoft.graph.domain entity.
7
+ */
8
+ export interface FederationConfigurationRequestBuilder extends BaseRequestBuilder<FederationConfigurationRequestBuilder> {
9
+ /**
10
+ * Provides operations to count the resources in the collection.
11
+ */
12
+ get count(): CountRequestBuilder;
13
+ /**
14
+ * Provides operations to manage the federationConfiguration property of the microsoft.graph.domain entity.
15
+ * @param internalDomainFederationId The unique identifier of internalDomainFederation
16
+ * @returns a InternalDomainFederationItemRequestBuilder
17
+ */
18
+ byInternalDomainFederationId(internalDomainFederationId: string): InternalDomainFederationItemRequestBuilder;
19
+ /**
20
+ * Read the properties of the internalDomainFederation objects for the domain. This API returns only one object in the collection.
21
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
22
+ * @returns a Promise of InternalDomainFederationCollectionResponse
23
+ * @see {@link https://learn.microsoft.com/graph/api/domain-list-federationconfiguration?view=graph-rest-1.0|Find more info here}
24
+ */
25
+ get(requestConfiguration?: RequestConfiguration<FederationConfigurationRequestBuilderGetQueryParameters> | undefined): Promise<InternalDomainFederationCollectionResponse | undefined>;
26
+ /**
27
+ * Create a new internalDomainFederation object.
28
+ * @param body The request body
29
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
30
+ * @returns a Promise of InternalDomainFederation
31
+ * @see {@link https://learn.microsoft.com/graph/api/domain-post-federationconfiguration?view=graph-rest-1.0|Find more info here}
32
+ */
33
+ post(body: InternalDomainFederation, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<InternalDomainFederation | undefined>;
34
+ /**
35
+ * Read the properties of the internalDomainFederation objects for the domain. This API returns only one object in the collection.
36
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
37
+ * @returns a RequestInformation
38
+ */
39
+ toGetRequestInformation(requestConfiguration?: RequestConfiguration<FederationConfigurationRequestBuilderGetQueryParameters> | undefined): RequestInformation;
40
+ /**
41
+ * Create a new internalDomainFederation object.
42
+ * @param body The request body
43
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
44
+ * @returns a RequestInformation
45
+ */
46
+ toPostRequestInformation(body: InternalDomainFederation, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
47
+ }
48
+ /**
49
+ * Read the properties of the internalDomainFederation objects for the domain. This API returns only one object in the collection.
50
+ */
51
+ export interface FederationConfigurationRequestBuilderGetQueryParameters {
52
+ /**
53
+ * Include count of items
54
+ */
55
+ count?: boolean;
56
+ /**
57
+ * Expand related entities
58
+ */
59
+ expand?: string[];
60
+ /**
61
+ * Filter items by property values
62
+ */
63
+ filter?: string;
64
+ /**
65
+ * Order items by property values
66
+ */
67
+ orderby?: string[];
68
+ /**
69
+ * Search items by search phrases
70
+ */
71
+ search?: string;
72
+ /**
73
+ * Select properties to be returned
74
+ */
75
+ select?: string[];
76
+ /**
77
+ * Skip the first n items
78
+ */
79
+ skip?: number;
80
+ /**
81
+ * Show only the first n items
82
+ */
83
+ top?: number;
84
+ }
85
+ /**
86
+ * Metadata for all the navigation properties in the request builder.
87
+ */
88
+ export declare const FederationConfigurationRequestBuilderNavigationMetadata: Record<Exclude<keyof FederationConfigurationRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>;
89
+ /**
90
+ * Metadata for all the requests in the request builder.
91
+ */
92
+ export declare const FederationConfigurationRequestBuilderRequestsMetadata: RequestsMetadata;
93
+ /**
94
+ * Uri template for the request builder.
95
+ */
96
+ export declare const FederationConfigurationRequestBuilderUriTemplate = "{+baseurl}/domains/{domain%2Did}/federationConfiguration{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}";
97
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAGA,OAAO,EAAmK,KAAK,wBAAwB,EAAE,KAAK,0CAA0C,EAAE,MAAM,gCAAgC,CAAC;AAEjS,OAAO,EAAuE,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AACzH,OAAO,EAAqH,KAAK,0CAA0C,EAAE,MAAM,SAAS,CAAC;AAC7L,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,kCAAkC,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAE1P;;GAEG;AACH,MAAM,WAAW,qCAAsC,SAAQ,kBAAkB,CAAC,qCAAqC,CAAC;IACpH;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;;OAIG;IACF,4BAA4B,CAAC,0BAA0B,EAAE,MAAM,GAAI,0CAA0C,CAAC;IAC/G;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,uDAAuD,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,0CAA0C,GAAG,SAAS,CAAC,CAAC;IACzL;;;;;;OAMG;IACF,IAAI,CAAC,IAAI,EAAE,wBAAwB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,wBAAwB,GAAG,SAAS,CAAC,CAAC;IACvJ;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,uDAAuD,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAChK;;;;;OAKG;IACF,wBAAwB,CAAC,IAAI,EAAE,wBAAwB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACnJ;AACD;;GAEG;AACH,MAAM,WAAW,uDAAuD;IACpE;;OAEG;IACH,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;IACnB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC;CAChB;AAcD;;GAEG;AACH,eAAO,MAAM,uDAAuD,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,qCAAqC,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CAUxL,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,qDAAqD,EAAE,gBAuBnE,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,gDAAgD,0IAA0I,CAAC"}
@@ -0,0 +1,70 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.FederationConfigurationRequestBuilderUriTemplate = exports.FederationConfigurationRequestBuilderRequestsMetadata = exports.FederationConfigurationRequestBuilderNavigationMetadata = void 0;
4
+ /* tslint:disable */
5
+ /* eslint-disable */
6
+ // Generated by Microsoft Kiota
7
+ const models_1 = require("@microsoft/msgraph-sdk/models/");
8
+ const oDataErrors_1 = require("@microsoft/msgraph-sdk/models/oDataErrors/");
9
+ const count_1 = require("./count/");
10
+ const item_1 = require("./item/");
11
+ /**
12
+ * Mapper for query parameters from symbol name to serialization name represented as a constant.
13
+ */
14
+ const FederationConfigurationRequestBuilderGetQueryParametersMapper = {
15
+ "count": "%24count",
16
+ "expand": "%24expand",
17
+ "filter": "%24filter",
18
+ "orderby": "%24orderby",
19
+ "search": "%24search",
20
+ "select": "%24select",
21
+ "skip": "%24skip",
22
+ "top": "%24top",
23
+ };
24
+ /**
25
+ * Metadata for all the navigation properties in the request builder.
26
+ */
27
+ exports.FederationConfigurationRequestBuilderNavigationMetadata = {
28
+ byInternalDomainFederationId: {
29
+ uriTemplate: item_1.InternalDomainFederationItemRequestBuilderUriTemplate,
30
+ requestsMetadata: item_1.InternalDomainFederationItemRequestBuilderRequestsMetadata,
31
+ pathParametersMappings: ["internalDomainFederation%2Did"],
32
+ },
33
+ count: {
34
+ uriTemplate: count_1.CountRequestBuilderUriTemplate,
35
+ requestsMetadata: count_1.CountRequestBuilderRequestsMetadata,
36
+ },
37
+ };
38
+ /**
39
+ * Metadata for all the requests in the request builder.
40
+ */
41
+ exports.FederationConfigurationRequestBuilderRequestsMetadata = {
42
+ get: {
43
+ responseBodyContentType: "application/json",
44
+ errorMappings: {
45
+ _4XX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
46
+ _5XX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
47
+ },
48
+ adapterMethodName: "sendAsync",
49
+ responseBodyFactory: models_1.createInternalDomainFederationCollectionResponseFromDiscriminatorValue,
50
+ queryParametersMapper: FederationConfigurationRequestBuilderGetQueryParametersMapper,
51
+ },
52
+ post: {
53
+ responseBodyContentType: "application/json",
54
+ errorMappings: {
55
+ _4XX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
56
+ _5XX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
57
+ },
58
+ adapterMethodName: "sendAsync",
59
+ responseBodyFactory: models_1.createInternalDomainFederationFromDiscriminatorValue,
60
+ requestBodyContentType: "application/json",
61
+ requestBodySerializer: models_1.serializeInternalDomainFederation,
62
+ requestInformationContentSetMethod: "setContentFromParsable",
63
+ },
64
+ };
65
+ /**
66
+ * Uri template for the request builder.
67
+ */
68
+ exports.FederationConfigurationRequestBuilderUriTemplate = "{+baseurl}/domains/{domain%2Did}/federationConfiguration{?%24top,%24skip,%24search,%24filter,%24count,%24orderby,%24select,%24expand}";
69
+ /* tslint:enable */
70
+ /* eslint-enable */
@@ -0,0 +1,69 @@
1
+ import { type InternalDomainFederation } from '@microsoft/msgraph-sdk/models/';
2
+ import { type BaseRequestBuilder, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
3
+ /**
4
+ * Provides operations to manage the federationConfiguration property of the microsoft.graph.domain entity.
5
+ */
6
+ export interface InternalDomainFederationItemRequestBuilder extends BaseRequestBuilder<InternalDomainFederationItemRequestBuilder> {
7
+ /**
8
+ * Delete an internalDomainFederation object.
9
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
10
+ * @see {@link https://learn.microsoft.com/graph/api/internaldomainfederation-delete?view=graph-rest-1.0|Find more info here}
11
+ */
12
+ delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
13
+ /**
14
+ * Read the properties and relationships of an internalDomainFederation object.
15
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
16
+ * @returns a Promise of InternalDomainFederation
17
+ * @see {@link https://learn.microsoft.com/graph/api/internaldomainfederation-get?view=graph-rest-1.0|Find more info here}
18
+ */
19
+ get(requestConfiguration?: RequestConfiguration<InternalDomainFederationItemRequestBuilderGetQueryParameters> | undefined): Promise<InternalDomainFederation | undefined>;
20
+ /**
21
+ * Update the properties of an internalDomainFederation object.
22
+ * @param body The request body
23
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
24
+ * @returns a Promise of InternalDomainFederation
25
+ * @see {@link https://learn.microsoft.com/graph/api/internaldomainfederation-update?view=graph-rest-1.0|Find more info here}
26
+ */
27
+ patch(body: InternalDomainFederation, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<InternalDomainFederation | undefined>;
28
+ /**
29
+ * Delete an internalDomainFederation object.
30
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
31
+ * @returns a RequestInformation
32
+ */
33
+ toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
34
+ /**
35
+ * Read the properties and relationships of an internalDomainFederation object.
36
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
37
+ * @returns a RequestInformation
38
+ */
39
+ toGetRequestInformation(requestConfiguration?: RequestConfiguration<InternalDomainFederationItemRequestBuilderGetQueryParameters> | undefined): RequestInformation;
40
+ /**
41
+ * Update the properties of an internalDomainFederation object.
42
+ * @param body The request body
43
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
44
+ * @returns a RequestInformation
45
+ */
46
+ toPatchRequestInformation(body: InternalDomainFederation, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
47
+ }
48
+ /**
49
+ * Read the properties and relationships of an internalDomainFederation object.
50
+ */
51
+ export interface InternalDomainFederationItemRequestBuilderGetQueryParameters {
52
+ /**
53
+ * Expand related entities
54
+ */
55
+ expand?: string[];
56
+ /**
57
+ * Select properties to be returned
58
+ */
59
+ select?: string[];
60
+ }
61
+ /**
62
+ * Metadata for all the requests in the request builder.
63
+ */
64
+ export declare const InternalDomainFederationItemRequestBuilderRequestsMetadata: RequestsMetadata;
65
+ /**
66
+ * Uri template for the request builder.
67
+ */
68
+ export declare const InternalDomainFederationItemRequestBuilderUriTemplate = "{+baseurl}/domains/{domain%2Did}/federationConfiguration/{internalDomainFederation%2Did}{?%24select,%24expand}";
69
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAGA,OAAO,EAA2F,KAAK,wBAAwB,EAAE,MAAM,gCAAgC,CAAC;AAExK,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAExL;;GAEG;AACH,MAAM,WAAW,0CAA2C,SAAQ,kBAAkB,CAAC,0CAA0C,CAAC;IAC9H;;;;OAIG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzF;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,4DAA4D,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,wBAAwB,GAAG,SAAS,CAAC,CAAC;IAC5K;;;;;;OAMG;IACF,KAAK,CAAC,IAAI,EAAE,wBAAwB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,wBAAwB,GAAG,SAAS,CAAC,CAAC;IACxJ;;;;OAIG;IACF,0BAA0B,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAClH;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,4DAA4D,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IACrK;;;;;OAKG;IACF,yBAAyB,CAAC,IAAI,EAAE,wBAAwB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACpJ;AACD;;GAEG;AACH,MAAM,WAAW,4DAA4D;IACzE;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AAQD;;GAEG;AACH,eAAO,MAAM,0DAA0D,EAAE,gBA+BxE,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,qDAAqD,mHAAmH,CAAC"}
@@ -0,0 +1,56 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.InternalDomainFederationItemRequestBuilderUriTemplate = exports.InternalDomainFederationItemRequestBuilderRequestsMetadata = void 0;
4
+ /* tslint:disable */
5
+ /* eslint-disable */
6
+ // Generated by Microsoft Kiota
7
+ const models_1 = require("@microsoft/msgraph-sdk/models/");
8
+ const oDataErrors_1 = require("@microsoft/msgraph-sdk/models/oDataErrors/");
9
+ /**
10
+ * Mapper for query parameters from symbol name to serialization name represented as a constant.
11
+ */
12
+ const InternalDomainFederationItemRequestBuilderGetQueryParametersMapper = {
13
+ "expand": "%24expand",
14
+ "select": "%24select",
15
+ };
16
+ /**
17
+ * Metadata for all the requests in the request builder.
18
+ */
19
+ exports.InternalDomainFederationItemRequestBuilderRequestsMetadata = {
20
+ delete: {
21
+ responseBodyContentType: "application/json",
22
+ errorMappings: {
23
+ _4XX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
24
+ _5XX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
25
+ },
26
+ adapterMethodName: "sendNoResponseContentAsync",
27
+ },
28
+ get: {
29
+ responseBodyContentType: "application/json",
30
+ errorMappings: {
31
+ _4XX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
32
+ _5XX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
33
+ },
34
+ adapterMethodName: "sendAsync",
35
+ responseBodyFactory: models_1.createInternalDomainFederationFromDiscriminatorValue,
36
+ queryParametersMapper: InternalDomainFederationItemRequestBuilderGetQueryParametersMapper,
37
+ },
38
+ patch: {
39
+ responseBodyContentType: "application/json",
40
+ errorMappings: {
41
+ _4XX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
42
+ _5XX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
43
+ },
44
+ adapterMethodName: "sendAsync",
45
+ responseBodyFactory: models_1.createInternalDomainFederationFromDiscriminatorValue,
46
+ requestBodyContentType: "application/json",
47
+ requestBodySerializer: models_1.serializeInternalDomainFederation,
48
+ requestInformationContentSetMethod: "setContentFromParsable",
49
+ },
50
+ };
51
+ /**
52
+ * Uri template for the request builder.
53
+ */
54
+ exports.InternalDomainFederationItemRequestBuilderUriTemplate = "{+baseurl}/domains/{domain%2Did}/federationConfiguration/{internalDomainFederation%2Did}{?%24select,%24expand}";
55
+ /* tslint:enable */
56
+ /* eslint-enable */
@@ -0,0 +1,59 @@
1
+ import { type AdditionalDataHolder, type BackedModel, type BaseRequestBuilder, type Parsable, type ParseNode, type RequestConfiguration, type RequestInformation, type RequestsMetadata, type SerializationWriter } from '@microsoft/kiota-abstractions';
2
+ /**
3
+ * Creates a new instance of the appropriate class based on discriminator value
4
+ * @param parseNode The parse node to use to read the discriminator value and create the object
5
+ * @returns a forceDeletePostRequestBody
6
+ */
7
+ export declare function createForceDeletePostRequestBodyFromDiscriminatorValue(parseNode: ParseNode | undefined): typeof deserializeIntoForceDeletePostRequestBody;
8
+ /**
9
+ * The deserialization information for the current model
10
+ * @returns a Record<string, (node: ParseNode) => void>
11
+ */
12
+ export declare function deserializeIntoForceDeletePostRequestBody(forceDeletePostRequestBody?: ForceDeletePostRequestBody | undefined): Record<string, (node: ParseNode) => void>;
13
+ export interface ForceDeletePostRequestBody extends AdditionalDataHolder, BackedModel, Parsable {
14
+ /**
15
+ * Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
16
+ */
17
+ additionalData?: Record<string, unknown>;
18
+ /**
19
+ * Stores model information.
20
+ */
21
+ backingStoreEnabled?: boolean;
22
+ /**
23
+ * The disableUserAccounts property
24
+ */
25
+ disableUserAccounts?: boolean;
26
+ }
27
+ /**
28
+ * Provides operations to call the forceDelete method.
29
+ */
30
+ export interface ForceDeleteRequestBuilder extends BaseRequestBuilder<ForceDeleteRequestBuilder> {
31
+ /**
32
+ * Deletes a domain using an asynchronous long-running operation. Prior to calling forceDelete, you must update or remove any references to Exchange as the provisioning service. The following actions are performed as part of this operation: After the domain deletion completes, API operations for the deleted domain will return an HTTP 404 status code. To verify deletion of a domain, you can perform a get domain operation.
33
+ * @param body The request body
34
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
35
+ * @see {@link https://learn.microsoft.com/graph/api/domain-forcedelete?view=graph-rest-1.0|Find more info here}
36
+ */
37
+ post(body: ForceDeletePostRequestBody, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
38
+ /**
39
+ * Deletes a domain using an asynchronous long-running operation. Prior to calling forceDelete, you must update or remove any references to Exchange as the provisioning service. The following actions are performed as part of this operation: After the domain deletion completes, API operations for the deleted domain will return an HTTP 404 status code. To verify deletion of a domain, you can perform a get domain operation.
40
+ * @param body The request body
41
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
42
+ * @returns a RequestInformation
43
+ */
44
+ toPostRequestInformation(body: ForceDeletePostRequestBody, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
45
+ }
46
+ /**
47
+ * Serializes information the current object
48
+ * @param writer Serialization writer to use to serialize this model
49
+ */
50
+ export declare function serializeForceDeletePostRequestBody(writer: SerializationWriter, forceDeletePostRequestBody?: ForceDeletePostRequestBody | undefined): void;
51
+ /**
52
+ * Metadata for all the requests in the request builder.
53
+ */
54
+ export declare const ForceDeleteRequestBuilderRequestsMetadata: RequestsMetadata;
55
+ /**
56
+ * Uri template for the request builder.
57
+ */
58
+ export declare const ForceDeleteRequestBuilderUriTemplate = "{+baseurl}/domains/{domain%2Did}/forceDelete";
59
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,KAAK,oBAAoB,EAAE,KAAK,WAAW,EAAqB,KAAK,kBAAkB,EAAE,KAAK,QAAQ,EAAwB,KAAK,SAAS,EAAE,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,KAAK,mBAAmB,EAAE,MAAM,+BAA+B,CAAC;AAElS;;;;GAIG;AACH,wBAAgB,sDAAsD,CAAC,SAAS,EAAE,SAAS,GAAG,SAAS,oDAEtG;AACD;;;GAGG;AACH,wBAAgB,yCAAyC,CAAC,0BAA0B,GAAE,0BAA0B,GAAG,SAA4C,GAAI,MAAM,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,SAAS,KAAK,IAAI,CAAC,CAK3M;AACD,MAAM,WAAW,0BAA2B,SAAQ,oBAAoB,EAAE,WAAW,EAAE,QAAQ;IAC3F;;OAEG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IACzC;;OAEG;IACH,mBAAmB,CAAC,EAAE,OAAO,CAAC;IAC9B;;OAEG;IACH,mBAAmB,CAAC,EAAE,OAAO,CAAC;CACjC;AACD;;GAEG;AACH,MAAM,WAAW,yBAA0B,SAAQ,kBAAkB,CAAC,yBAAyB,CAAC;IAC5F;;;;;OAKG;IACF,IAAI,CAAC,IAAI,EAAE,0BAA0B,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzH;;;;;OAKG;IACF,wBAAwB,CAAC,IAAI,EAAE,0BAA0B,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACrJ;AACD;;;GAGG;AACH,wBAAgB,mCAAmC,CAAC,MAAM,EAAE,mBAAmB,EAAE,0BAA0B,GAAE,0BAA0B,GAAG,SAA4C,GAAI,IAAI,CAG7L;AACD;;GAEG;AACH,eAAO,MAAM,yCAAyC,EAAE,gBAYvD,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,oCAAoC,iDAAiD,CAAC"}
@@ -0,0 +1,58 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ForceDeleteRequestBuilderUriTemplate = exports.ForceDeleteRequestBuilderRequestsMetadata = exports.serializeForceDeletePostRequestBody = exports.deserializeIntoForceDeletePostRequestBody = exports.createForceDeletePostRequestBodyFromDiscriminatorValue = void 0;
4
+ /* tslint:disable */
5
+ /* eslint-disable */
6
+ // Generated by Microsoft Kiota
7
+ const oDataErrors_1 = require("@microsoft/msgraph-sdk/models/oDataErrors/");
8
+ /**
9
+ * Creates a new instance of the appropriate class based on discriminator value
10
+ * @param parseNode The parse node to use to read the discriminator value and create the object
11
+ * @returns a forceDeletePostRequestBody
12
+ */
13
+ function createForceDeletePostRequestBodyFromDiscriminatorValue(parseNode) {
14
+ return deserializeIntoForceDeletePostRequestBody;
15
+ }
16
+ exports.createForceDeletePostRequestBodyFromDiscriminatorValue = createForceDeletePostRequestBodyFromDiscriminatorValue;
17
+ /**
18
+ * The deserialization information for the current model
19
+ * @returns a Record<string, (node: ParseNode) => void>
20
+ */
21
+ function deserializeIntoForceDeletePostRequestBody(forceDeletePostRequestBody = {}) {
22
+ return {
23
+ "backingStoreEnabled": n => { forceDeletePostRequestBody.backingStoreEnabled = true; },
24
+ "disableUserAccounts": n => { forceDeletePostRequestBody.disableUserAccounts = n.getBooleanValue(); },
25
+ };
26
+ }
27
+ exports.deserializeIntoForceDeletePostRequestBody = deserializeIntoForceDeletePostRequestBody;
28
+ /**
29
+ * Serializes information the current object
30
+ * @param writer Serialization writer to use to serialize this model
31
+ */
32
+ function serializeForceDeletePostRequestBody(writer, forceDeletePostRequestBody = {}) {
33
+ writer.writeBooleanValue("disableUserAccounts", forceDeletePostRequestBody.disableUserAccounts);
34
+ writer.writeAdditionalData(forceDeletePostRequestBody.additionalData);
35
+ }
36
+ exports.serializeForceDeletePostRequestBody = serializeForceDeletePostRequestBody;
37
+ /**
38
+ * Metadata for all the requests in the request builder.
39
+ */
40
+ exports.ForceDeleteRequestBuilderRequestsMetadata = {
41
+ post: {
42
+ responseBodyContentType: "application/json",
43
+ errorMappings: {
44
+ _4XX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
45
+ _5XX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
46
+ },
47
+ adapterMethodName: "sendNoResponseContentAsync",
48
+ requestBodyContentType: "application/json",
49
+ requestBodySerializer: serializeForceDeletePostRequestBody,
50
+ requestInformationContentSetMethod: "setContentFromParsable",
51
+ },
52
+ };
53
+ /**
54
+ * Uri template for the request builder.
55
+ */
56
+ exports.ForceDeleteRequestBuilderUriTemplate = "{+baseurl}/domains/{domain%2Did}/forceDelete";
57
+ /* tslint:enable */
58
+ /* eslint-enable */
@@ -0,0 +1,108 @@
1
+ import { type Domain } from '@microsoft/msgraph-sdk/models/';
2
+ import { type DomainNameReferencesRequestBuilder } from './domainNameReferences/';
3
+ import { type FederationConfigurationRequestBuilder } from './federationConfiguration/';
4
+ import { type ForceDeleteRequestBuilder } from './forceDelete/';
5
+ import { type PromoteRequestBuilder } from './promote/';
6
+ import { type ServiceConfigurationRecordsRequestBuilder } from './serviceConfigurationRecords/';
7
+ import { type VerificationDnsRecordsRequestBuilder } from './verificationDnsRecords/';
8
+ import { type VerifyRequestBuilder } from './verify/';
9
+ import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
10
+ /**
11
+ * Provides operations to manage the collection of domain entities.
12
+ */
13
+ export interface DomainItemRequestBuilder extends BaseRequestBuilder<DomainItemRequestBuilder> {
14
+ /**
15
+ * Provides operations to manage the domainNameReferences property of the microsoft.graph.domain entity.
16
+ */
17
+ get domainNameReferences(): DomainNameReferencesRequestBuilder;
18
+ /**
19
+ * Provides operations to manage the federationConfiguration property of the microsoft.graph.domain entity.
20
+ */
21
+ get federationConfiguration(): FederationConfigurationRequestBuilder;
22
+ /**
23
+ * Provides operations to call the forceDelete method.
24
+ */
25
+ get forceDelete(): ForceDeleteRequestBuilder;
26
+ /**
27
+ * Provides operations to call the promote method.
28
+ */
29
+ get promote(): PromoteRequestBuilder;
30
+ /**
31
+ * Provides operations to manage the serviceConfigurationRecords property of the microsoft.graph.domain entity.
32
+ */
33
+ get serviceConfigurationRecords(): ServiceConfigurationRecordsRequestBuilder;
34
+ /**
35
+ * Provides operations to manage the verificationDnsRecords property of the microsoft.graph.domain entity.
36
+ */
37
+ get verificationDnsRecords(): VerificationDnsRecordsRequestBuilder;
38
+ /**
39
+ * Provides operations to call the verify method.
40
+ */
41
+ get verify(): VerifyRequestBuilder;
42
+ /**
43
+ * Deletes a domain from a tenant.
44
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
45
+ * @see {@link https://learn.microsoft.com/graph/api/domain-delete?view=graph-rest-1.0|Find more info here}
46
+ */
47
+ delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
48
+ /**
49
+ * Retrieve the properties and relationships of domain object.
50
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
51
+ * @returns a Promise of Domain
52
+ * @see {@link https://learn.microsoft.com/graph/api/domain-get?view=graph-rest-1.0|Find more info here}
53
+ */
54
+ get(requestConfiguration?: RequestConfiguration<DomainItemRequestBuilderGetQueryParameters> | undefined): Promise<Domain | undefined>;
55
+ /**
56
+ * Update the properties of domain object.
57
+ * @param body The request body
58
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
59
+ * @returns a Promise of Domain
60
+ * @see {@link https://learn.microsoft.com/graph/api/domain-update?view=graph-rest-1.0|Find more info here}
61
+ */
62
+ patch(body: Domain, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<Domain | undefined>;
63
+ /**
64
+ * Deletes a domain from a tenant.
65
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
66
+ * @returns a RequestInformation
67
+ */
68
+ toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
69
+ /**
70
+ * Retrieve the properties and relationships of domain object.
71
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
72
+ * @returns a RequestInformation
73
+ */
74
+ toGetRequestInformation(requestConfiguration?: RequestConfiguration<DomainItemRequestBuilderGetQueryParameters> | undefined): RequestInformation;
75
+ /**
76
+ * Update the properties of domain object.
77
+ * @param body The request body
78
+ * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
79
+ * @returns a RequestInformation
80
+ */
81
+ toPatchRequestInformation(body: Domain, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
82
+ }
83
+ /**
84
+ * Retrieve the properties and relationships of domain object.
85
+ */
86
+ export interface DomainItemRequestBuilderGetQueryParameters {
87
+ /**
88
+ * Expand related entities
89
+ */
90
+ expand?: string[];
91
+ /**
92
+ * Select properties to be returned
93
+ */
94
+ select?: string[];
95
+ }
96
+ /**
97
+ * Metadata for all the navigation properties in the request builder.
98
+ */
99
+ export declare const DomainItemRequestBuilderNavigationMetadata: Record<Exclude<keyof DomainItemRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>;
100
+ /**
101
+ * Metadata for all the requests in the request builder.
102
+ */
103
+ export declare const DomainItemRequestBuilderRequestsMetadata: RequestsMetadata;
104
+ /**
105
+ * Uri template for the request builder.
106
+ */
107
+ export declare const DomainItemRequestBuilderUriTemplate = "{+baseurl}/domains/{domain%2Did}{?%24select,%24expand}";
108
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAGA,OAAO,EAAuD,KAAK,MAAM,EAAE,MAAM,gCAAgC,CAAC;AAElH,OAAO,EAA2J,KAAK,kCAAkC,EAAE,MAAM,yBAAyB,CAAC;AAC3O,OAAO,EAAoK,KAAK,qCAAqC,EAAE,MAAM,4BAA4B,CAAC;AAC1P,OAAO,EAAmF,KAAK,yBAAyB,EAAE,MAAM,gBAAgB,CAAC;AACjJ,OAAO,EAA2E,KAAK,qBAAqB,EAAE,MAAM,YAAY,CAAC;AACjI,OAAO,EAAgL,KAAK,yCAAyC,EAAE,MAAM,gCAAgC,CAAC;AAC9Q,OAAO,EAAE,KAAK,oCAAoC,EAAiK,MAAM,2BAA2B,CAAC;AACrP,OAAO,EAAE,KAAK,oBAAoB,EAAyE,MAAM,WAAW,CAAC;AAC7H,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,kCAAkC,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAE1P;;GAEG;AACH,MAAM,WAAW,wBAAyB,SAAQ,kBAAkB,CAAC,wBAAwB,CAAC;IAC1F;;OAEG;IACH,IAAI,oBAAoB,IAAI,kCAAkC,CAAC;IAC/D;;OAEG;IACH,IAAI,uBAAuB,IAAI,qCAAqC,CAAC;IACrE;;OAEG;IACH,IAAI,WAAW,IAAI,yBAAyB,CAAC;IAC7C;;OAEG;IACH,IAAI,OAAO,IAAI,qBAAqB,CAAC;IACrC;;OAEG;IACH,IAAI,2BAA2B,IAAI,yCAAyC,CAAC;IAC7E;;OAEG;IACH,IAAI,sBAAsB,IAAI,oCAAoC,CAAC;IACnE;;OAEG;IACH,IAAI,MAAM,IAAI,oBAAoB,CAAC;IACnC;;;;OAIG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzF;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,0CAA0C,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACxI;;;;;;OAMG;IACF,KAAK,CAAC,IAAI,EAAE,MAAM,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACpH;;;;OAIG;IACF,0BAA0B,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAClH;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,0CAA0C,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IACnJ;;;;;OAKG;IACF,yBAAyB,CAAC,IAAI,EAAE,MAAM,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAClI;AACD;;GAEG;AACH,MAAM,WAAW,0CAA0C;IACvD;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AAQD;;GAEG;AACH,eAAO,MAAM,0CAA0C,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,wBAAwB,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CAiC9J,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,wCAAwC,EAAE,gBA+BtD,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,mCAAmC,2DAA2D,CAAC"}