@azure/template 1.0.13-beta.5253259 → 1.0.13-beta.5570684
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/LICENSE +1 -1
- package/README.md +48 -53
- package/dist/browser/api/index.d.ts +2 -0
- package/dist/browser/api/index.js +4 -0
- package/dist/browser/api/index.js.map +1 -0
- package/dist/browser/api/widgetAnalyticsContext.d.ts +15 -0
- package/dist/browser/api/widgetAnalyticsContext.js +37 -0
- package/dist/browser/api/widgetAnalyticsContext.js.map +1 -0
- package/dist/browser/api/widgets/index.d.ts +3 -0
- package/dist/browser/api/widgets/index.js +4 -0
- package/dist/browser/api/widgets/index.js.map +1 -0
- package/dist/browser/api/widgets/operations.d.ts +27 -0
- package/dist/browser/api/widgets/operations.js +162 -0
- package/dist/browser/api/widgets/operations.js.map +1 -0
- package/dist/browser/api/widgets/options.d.ts +21 -0
- package/dist/browser/api/widgets/options.js +4 -0
- package/dist/browser/api/widgets/options.js.map +1 -0
- package/dist/browser/classic/index.d.ts +2 -0
- package/dist/browser/classic/index.js +4 -0
- package/dist/browser/classic/index.js.map +1 -0
- package/dist/browser/classic/widgets/index.d.ts +20 -0
- package/dist/browser/classic/widgets/index.js +18 -0
- package/dist/browser/classic/widgets/index.js.map +1 -0
- package/dist/browser/index.d.ts +8 -1
- package/dist/browser/index.js +3 -1
- package/dist/browser/index.js.map +1 -1
- package/dist/browser/logger.d.ts +0 -5
- package/dist/browser/logger.js +0 -5
- package/dist/browser/logger.js.map +1 -1
- package/dist/browser/models/index.d.ts +2 -0
- package/dist/browser/models/index.js +4 -0
- package/dist/browser/models/index.js.map +1 -0
- package/dist/browser/models/models.d.ts +74 -0
- package/dist/browser/models/models.js +73 -0
- package/dist/browser/models/models.js.map +1 -0
- package/dist/browser/restorePollerHelpers.d.ts +21 -0
- package/dist/browser/restorePollerHelpers.js +95 -0
- package/dist/browser/restorePollerHelpers.js.map +1 -0
- package/dist/browser/static-helpers/pagingHelpers.d.ts +72 -0
- package/dist/browser/static-helpers/pagingHelpers.js +118 -0
- package/dist/browser/static-helpers/pagingHelpers.js.map +1 -0
- package/dist/browser/static-helpers/pollingHelpers.d.ts +30 -0
- package/dist/browser/static-helpers/pollingHelpers.js +79 -0
- package/dist/browser/static-helpers/pollingHelpers.js.map +1 -0
- package/dist/browser/static-helpers/urlTemplate.d.ts +5 -0
- package/dist/browser/static-helpers/urlTemplate.js +185 -0
- package/dist/browser/static-helpers/urlTemplate.js.map +1 -0
- package/dist/browser/widgetAnalyticsClient.d.ts +19 -0
- package/dist/browser/widgetAnalyticsClient.js +31 -0
- package/dist/browser/widgetAnalyticsClient.js.map +1 -0
- package/dist/commonjs/api/index.d.ts +2 -0
- package/dist/commonjs/api/index.js +8 -0
- package/dist/commonjs/api/index.js.map +1 -0
- package/dist/commonjs/api/widgetAnalyticsContext.d.ts +15 -0
- package/dist/commonjs/api/widgetAnalyticsContext.js +40 -0
- package/dist/commonjs/api/widgetAnalyticsContext.js.map +1 -0
- package/dist/commonjs/api/widgets/index.d.ts +3 -0
- package/dist/commonjs/api/widgets/index.js +12 -0
- package/dist/commonjs/api/widgets/index.js.map +1 -0
- package/dist/commonjs/api/widgets/operations.d.ts +27 -0
- package/dist/commonjs/api/widgets/operations.js +179 -0
- package/dist/commonjs/api/widgets/operations.js.map +1 -0
- package/dist/commonjs/api/widgets/options.d.ts +21 -0
- package/dist/commonjs/{constants.js → api/widgets/options.js} +1 -3
- package/dist/commonjs/api/widgets/options.js.map +1 -0
- package/dist/commonjs/classic/index.d.ts +2 -0
- package/dist/commonjs/classic/index.js +5 -0
- package/dist/commonjs/classic/index.js.map +1 -0
- package/dist/commonjs/classic/widgets/index.d.ts +20 -0
- package/dist/commonjs/classic/widgets/index.js +21 -0
- package/dist/commonjs/classic/widgets/index.js.map +1 -0
- package/dist/commonjs/index.d.ts +8 -1
- package/dist/commonjs/index.js +8 -2
- package/dist/commonjs/index.js.map +1 -1
- package/dist/commonjs/logger.d.ts +0 -5
- package/dist/commonjs/logger.js +0 -5
- package/dist/commonjs/logger.js.map +1 -1
- package/dist/commonjs/models/index.d.ts +2 -0
- package/dist/commonjs/models/index.js +9 -0
- package/dist/commonjs/models/index.js.map +1 -0
- package/dist/commonjs/models/models.d.ts +74 -0
- package/dist/commonjs/models/models.js +84 -0
- package/dist/commonjs/models/models.js.map +1 -0
- package/dist/commonjs/restorePollerHelpers.d.ts +21 -0
- package/dist/commonjs/restorePollerHelpers.js +98 -0
- package/dist/commonjs/restorePollerHelpers.js.map +1 -0
- package/dist/commonjs/static-helpers/pagingHelpers.d.ts +72 -0
- package/dist/commonjs/static-helpers/pagingHelpers.js +121 -0
- package/dist/commonjs/static-helpers/pagingHelpers.js.map +1 -0
- package/dist/commonjs/static-helpers/pollingHelpers.d.ts +30 -0
- package/dist/commonjs/static-helpers/pollingHelpers.js +82 -0
- package/dist/commonjs/static-helpers/pollingHelpers.js.map +1 -0
- package/dist/commonjs/static-helpers/urlTemplate.d.ts +5 -0
- package/dist/commonjs/static-helpers/urlTemplate.js +188 -0
- package/dist/commonjs/static-helpers/urlTemplate.js.map +1 -0
- package/dist/commonjs/tsdoc-metadata.json +1 -1
- package/dist/commonjs/widgetAnalyticsClient.d.ts +19 -0
- package/dist/commonjs/widgetAnalyticsClient.js +35 -0
- package/dist/commonjs/widgetAnalyticsClient.js.map +1 -0
- package/dist/esm/api/index.d.ts +2 -0
- package/dist/esm/api/index.js +4 -0
- package/dist/esm/api/index.js.map +1 -0
- package/dist/esm/api/widgetAnalyticsContext.d.ts +15 -0
- package/dist/esm/api/widgetAnalyticsContext.js +37 -0
- package/dist/esm/api/widgetAnalyticsContext.js.map +1 -0
- package/dist/esm/api/widgets/index.d.ts +3 -0
- package/dist/esm/api/widgets/index.js +4 -0
- package/dist/esm/api/widgets/index.js.map +1 -0
- package/dist/esm/api/widgets/operations.d.ts +27 -0
- package/dist/esm/api/widgets/operations.js +162 -0
- package/dist/esm/api/widgets/operations.js.map +1 -0
- package/dist/esm/api/widgets/options.d.ts +21 -0
- package/dist/esm/api/widgets/options.js +4 -0
- package/dist/esm/api/widgets/options.js.map +1 -0
- package/dist/esm/classic/index.d.ts +2 -0
- package/dist/esm/classic/index.js +4 -0
- package/dist/esm/classic/index.js.map +1 -0
- package/dist/esm/classic/widgets/index.d.ts +20 -0
- package/dist/esm/classic/widgets/index.js +18 -0
- package/dist/esm/classic/widgets/index.js.map +1 -0
- package/dist/esm/index.d.ts +8 -1
- package/dist/esm/index.js +3 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/logger.d.ts +0 -5
- package/dist/esm/logger.js +0 -5
- package/dist/esm/logger.js.map +1 -1
- package/dist/esm/models/index.d.ts +2 -0
- package/dist/esm/models/index.js +4 -0
- package/dist/esm/models/index.js.map +1 -0
- package/dist/esm/models/models.d.ts +74 -0
- package/dist/esm/models/models.js +73 -0
- package/dist/esm/models/models.js.map +1 -0
- package/dist/esm/restorePollerHelpers.d.ts +21 -0
- package/dist/esm/restorePollerHelpers.js +95 -0
- package/dist/esm/restorePollerHelpers.js.map +1 -0
- package/dist/esm/static-helpers/pagingHelpers.d.ts +72 -0
- package/dist/esm/static-helpers/pagingHelpers.js +118 -0
- package/dist/esm/static-helpers/pagingHelpers.js.map +1 -0
- package/dist/esm/static-helpers/pollingHelpers.d.ts +30 -0
- package/dist/esm/static-helpers/pollingHelpers.js +79 -0
- package/dist/esm/static-helpers/pollingHelpers.js.map +1 -0
- package/dist/esm/static-helpers/urlTemplate.d.ts +5 -0
- package/dist/esm/static-helpers/urlTemplate.js +185 -0
- package/dist/esm/static-helpers/urlTemplate.js.map +1 -0
- package/dist/esm/widgetAnalyticsClient.d.ts +19 -0
- package/dist/esm/widgetAnalyticsClient.js +31 -0
- package/dist/esm/widgetAnalyticsClient.js.map +1 -0
- package/dist/react-native/api/index.d.ts +2 -0
- package/dist/react-native/api/index.js +4 -0
- package/dist/react-native/api/index.js.map +1 -0
- package/dist/react-native/api/widgetAnalyticsContext.d.ts +15 -0
- package/dist/react-native/api/widgetAnalyticsContext.js +37 -0
- package/dist/react-native/api/widgetAnalyticsContext.js.map +1 -0
- package/dist/react-native/api/widgets/index.d.ts +3 -0
- package/dist/react-native/api/widgets/index.js +4 -0
- package/dist/react-native/api/widgets/index.js.map +1 -0
- package/dist/react-native/api/widgets/operations.d.ts +27 -0
- package/dist/react-native/api/widgets/operations.js +162 -0
- package/dist/react-native/api/widgets/operations.js.map +1 -0
- package/dist/react-native/api/widgets/options.d.ts +21 -0
- package/dist/react-native/api/widgets/options.js +4 -0
- package/dist/react-native/api/widgets/options.js.map +1 -0
- package/dist/react-native/classic/index.d.ts +2 -0
- package/dist/react-native/classic/index.js +4 -0
- package/dist/react-native/classic/index.js.map +1 -0
- package/dist/react-native/classic/widgets/index.d.ts +20 -0
- package/dist/react-native/classic/widgets/index.js +18 -0
- package/dist/react-native/classic/widgets/index.js.map +1 -0
- package/dist/react-native/index.d.ts +8 -1
- package/dist/react-native/index.js +3 -1
- package/dist/react-native/index.js.map +1 -1
- package/dist/react-native/logger.d.ts +0 -5
- package/dist/react-native/logger.js +0 -5
- package/dist/react-native/logger.js.map +1 -1
- package/dist/react-native/models/index.d.ts +2 -0
- package/dist/react-native/models/index.js +4 -0
- package/dist/react-native/models/index.js.map +1 -0
- package/dist/react-native/models/models.d.ts +74 -0
- package/dist/react-native/models/models.js +73 -0
- package/dist/react-native/models/models.js.map +1 -0
- package/dist/react-native/restorePollerHelpers.d.ts +21 -0
- package/dist/react-native/restorePollerHelpers.js +95 -0
- package/dist/react-native/restorePollerHelpers.js.map +1 -0
- package/dist/react-native/static-helpers/pagingHelpers.d.ts +72 -0
- package/dist/react-native/static-helpers/pagingHelpers.js +118 -0
- package/dist/react-native/static-helpers/pagingHelpers.js.map +1 -0
- package/dist/react-native/static-helpers/pollingHelpers.d.ts +30 -0
- package/dist/react-native/static-helpers/pollingHelpers.js +79 -0
- package/dist/react-native/static-helpers/pollingHelpers.js.map +1 -0
- package/dist/react-native/static-helpers/urlTemplate.d.ts +5 -0
- package/dist/react-native/static-helpers/urlTemplate.js +185 -0
- package/dist/react-native/static-helpers/urlTemplate.js.map +1 -0
- package/dist/react-native/widgetAnalyticsClient.d.ts +19 -0
- package/dist/react-native/widgetAnalyticsClient.js +31 -0
- package/dist/react-native/widgetAnalyticsClient.js.map +1 -0
- package/package.json +139 -84
- package/dist/browser/configurationClient.d.ts +0 -64
- package/dist/browser/configurationClient.d.ts.map +0 -1
- package/dist/browser/configurationClient.js +0 -96
- package/dist/browser/configurationClient.js.map +0 -1
- package/dist/browser/constants.d.ts +0 -2
- package/dist/browser/constants.d.ts.map +0 -1
- package/dist/browser/constants.js +0 -4
- package/dist/browser/constants.js.map +0 -1
- package/dist/browser/generated/generatedClient.d.ts +0 -168
- package/dist/browser/generated/generatedClient.d.ts.map +0 -1
- package/dist/browser/generated/generatedClient.js +0 -866
- package/dist/browser/generated/generatedClient.js.map +0 -1
- package/dist/browser/generated/generatedClientContext.d.ts +0 -15
- package/dist/browser/generated/generatedClientContext.d.ts.map +0 -1
- package/dist/browser/generated/generatedClientContext.js +0 -49
- package/dist/browser/generated/generatedClientContext.js.map +0 -1
- package/dist/browser/generated/index.d.ts +0 -4
- package/dist/browser/generated/index.d.ts.map +0 -1
- package/dist/browser/generated/index.js +0 -11
- package/dist/browser/generated/index.js.map +0 -1
- package/dist/browser/generated/lroImpl.d.ts +0 -16
- package/dist/browser/generated/lroImpl.d.ts.map +0 -1
- package/dist/browser/generated/lroImpl.js +0 -33
- package/dist/browser/generated/lroImpl.js.map +0 -1
- package/dist/browser/generated/models/index.d.ts +0 -775
- package/dist/browser/generated/models/index.d.ts.map +0 -1
- package/dist/browser/generated/models/index.js +0 -54
- package/dist/browser/generated/models/index.js.map +0 -1
- package/dist/browser/generated/models/mappers.d.ts +0 -41
- package/dist/browser/generated/models/mappers.d.ts.map +0 -1
- package/dist/browser/generated/models/mappers.js +0 -949
- package/dist/browser/generated/models/mappers.js.map +0 -1
- package/dist/browser/generated/models/parameters.d.ts +0 -35
- package/dist/browser/generated/models/parameters.d.ts.map +0 -1
- package/dist/browser/generated/models/parameters.js +0 -348
- package/dist/browser/generated/models/parameters.js.map +0 -1
- package/dist/browser/index.d.ts.map +0 -1
- package/dist/browser/logger.d.ts.map +0 -1
- package/dist/browser/util.d.ts +0 -12
- package/dist/browser/util.d.ts.map +0 -1
- package/dist/browser/util.js +0 -26
- package/dist/browser/util.js.map +0 -1
- package/dist/commonjs/configurationClient.d.ts +0 -64
- package/dist/commonjs/configurationClient.d.ts.map +0 -1
- package/dist/commonjs/configurationClient.js +0 -100
- package/dist/commonjs/configurationClient.js.map +0 -1
- package/dist/commonjs/constants.d.ts +0 -2
- package/dist/commonjs/constants.d.ts.map +0 -1
- package/dist/commonjs/constants.js.map +0 -1
- package/dist/commonjs/generated/generatedClient.d.ts +0 -168
- package/dist/commonjs/generated/generatedClient.d.ts.map +0 -1
- package/dist/commonjs/generated/generatedClient.js +0 -871
- package/dist/commonjs/generated/generatedClient.js.map +0 -1
- package/dist/commonjs/generated/generatedClientContext.d.ts +0 -15
- package/dist/commonjs/generated/generatedClientContext.d.ts.map +0 -1
- package/dist/commonjs/generated/generatedClientContext.js +0 -54
- package/dist/commonjs/generated/generatedClientContext.js.map +0 -1
- package/dist/commonjs/generated/index.d.ts +0 -4
- package/dist/commonjs/generated/index.d.ts.map +0 -1
- package/dist/commonjs/generated/index.js +0 -17
- package/dist/commonjs/generated/index.js.map +0 -1
- package/dist/commonjs/generated/lroImpl.d.ts +0 -16
- package/dist/commonjs/generated/lroImpl.d.ts.map +0 -1
- package/dist/commonjs/generated/lroImpl.js +0 -37
- package/dist/commonjs/generated/lroImpl.js.map +0 -1
- package/dist/commonjs/generated/models/index.d.ts +0 -775
- package/dist/commonjs/generated/models/index.d.ts.map +0 -1
- package/dist/commonjs/generated/models/index.js +0 -57
- package/dist/commonjs/generated/models/index.js.map +0 -1
- package/dist/commonjs/generated/models/mappers.d.ts +0 -41
- package/dist/commonjs/generated/models/mappers.d.ts.map +0 -1
- package/dist/commonjs/generated/models/mappers.js +0 -952
- package/dist/commonjs/generated/models/mappers.js.map +0 -1
- package/dist/commonjs/generated/models/parameters.d.ts +0 -35
- package/dist/commonjs/generated/models/parameters.d.ts.map +0 -1
- package/dist/commonjs/generated/models/parameters.js +0 -351
- package/dist/commonjs/generated/models/parameters.js.map +0 -1
- package/dist/commonjs/index.d.ts.map +0 -1
- package/dist/commonjs/logger.d.ts.map +0 -1
- package/dist/commonjs/util.d.ts +0 -12
- package/dist/commonjs/util.d.ts.map +0 -1
- package/dist/commonjs/util.js +0 -29
- package/dist/commonjs/util.js.map +0 -1
- package/dist/esm/configurationClient.d.ts +0 -64
- package/dist/esm/configurationClient.d.ts.map +0 -1
- package/dist/esm/configurationClient.js +0 -96
- package/dist/esm/configurationClient.js.map +0 -1
- package/dist/esm/constants.d.ts +0 -2
- package/dist/esm/constants.d.ts.map +0 -1
- package/dist/esm/constants.js +0 -4
- package/dist/esm/constants.js.map +0 -1
- package/dist/esm/generated/generatedClient.d.ts +0 -168
- package/dist/esm/generated/generatedClient.d.ts.map +0 -1
- package/dist/esm/generated/generatedClient.js +0 -866
- package/dist/esm/generated/generatedClient.js.map +0 -1
- package/dist/esm/generated/generatedClientContext.d.ts +0 -15
- package/dist/esm/generated/generatedClientContext.d.ts.map +0 -1
- package/dist/esm/generated/generatedClientContext.js +0 -49
- package/dist/esm/generated/generatedClientContext.js.map +0 -1
- package/dist/esm/generated/index.d.ts +0 -4
- package/dist/esm/generated/index.d.ts.map +0 -1
- package/dist/esm/generated/index.js +0 -11
- package/dist/esm/generated/index.js.map +0 -1
- package/dist/esm/generated/lroImpl.d.ts +0 -16
- package/dist/esm/generated/lroImpl.d.ts.map +0 -1
- package/dist/esm/generated/lroImpl.js +0 -33
- package/dist/esm/generated/lroImpl.js.map +0 -1
- package/dist/esm/generated/models/index.d.ts +0 -775
- package/dist/esm/generated/models/index.d.ts.map +0 -1
- package/dist/esm/generated/models/index.js +0 -54
- package/dist/esm/generated/models/index.js.map +0 -1
- package/dist/esm/generated/models/mappers.d.ts +0 -41
- package/dist/esm/generated/models/mappers.d.ts.map +0 -1
- package/dist/esm/generated/models/mappers.js +0 -949
- package/dist/esm/generated/models/mappers.js.map +0 -1
- package/dist/esm/generated/models/parameters.d.ts +0 -35
- package/dist/esm/generated/models/parameters.d.ts.map +0 -1
- package/dist/esm/generated/models/parameters.js +0 -348
- package/dist/esm/generated/models/parameters.js.map +0 -1
- package/dist/esm/index.d.ts.map +0 -1
- package/dist/esm/logger.d.ts.map +0 -1
- package/dist/esm/util.d.ts +0 -12
- package/dist/esm/util.d.ts.map +0 -1
- package/dist/esm/util.js +0 -26
- package/dist/esm/util.js.map +0 -1
- package/dist/react-native/configurationClient.d.ts +0 -64
- package/dist/react-native/configurationClient.d.ts.map +0 -1
- package/dist/react-native/configurationClient.js +0 -96
- package/dist/react-native/configurationClient.js.map +0 -1
- package/dist/react-native/constants.d.ts +0 -2
- package/dist/react-native/constants.d.ts.map +0 -1
- package/dist/react-native/constants.js +0 -4
- package/dist/react-native/constants.js.map +0 -1
- package/dist/react-native/generated/generatedClient.d.ts +0 -168
- package/dist/react-native/generated/generatedClient.d.ts.map +0 -1
- package/dist/react-native/generated/generatedClient.js +0 -866
- package/dist/react-native/generated/generatedClient.js.map +0 -1
- package/dist/react-native/generated/generatedClientContext.d.ts +0 -15
- package/dist/react-native/generated/generatedClientContext.d.ts.map +0 -1
- package/dist/react-native/generated/generatedClientContext.js +0 -49
- package/dist/react-native/generated/generatedClientContext.js.map +0 -1
- package/dist/react-native/generated/index.d.ts +0 -4
- package/dist/react-native/generated/index.d.ts.map +0 -1
- package/dist/react-native/generated/index.js +0 -11
- package/dist/react-native/generated/index.js.map +0 -1
- package/dist/react-native/generated/lroImpl.d.ts +0 -16
- package/dist/react-native/generated/lroImpl.d.ts.map +0 -1
- package/dist/react-native/generated/lroImpl.js +0 -33
- package/dist/react-native/generated/lroImpl.js.map +0 -1
- package/dist/react-native/generated/models/index.d.ts +0 -775
- package/dist/react-native/generated/models/index.d.ts.map +0 -1
- package/dist/react-native/generated/models/index.js +0 -54
- package/dist/react-native/generated/models/index.js.map +0 -1
- package/dist/react-native/generated/models/mappers.d.ts +0 -41
- package/dist/react-native/generated/models/mappers.d.ts.map +0 -1
- package/dist/react-native/generated/models/mappers.js +0 -949
- package/dist/react-native/generated/models/mappers.js.map +0 -1
- package/dist/react-native/generated/models/parameters.d.ts +0 -35
- package/dist/react-native/generated/models/parameters.d.ts.map +0 -1
- package/dist/react-native/generated/models/parameters.js +0 -348
- package/dist/react-native/generated/models/parameters.js.map +0 -1
- package/dist/react-native/index.d.ts.map +0 -1
- package/dist/react-native/logger.d.ts.map +0 -1
- package/dist/react-native/util.d.ts +0 -12
- package/dist/react-native/util.d.ts.map +0 -1
- package/dist/react-native/util.js +0 -26
- package/dist/react-native/util.js.map +0 -1
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/generated/models/index.ts"],"names":[],"mappings":"AAQA,OAAO,KAAK,UAAU,MAAM,oBAAoB,CAAC;AAEjD,oCAAoC;AACpC,MAAM,WAAW,aAAa;IAC5B,4BAA4B;IAC5B,KAAK,CAAC,EAAE,GAAG,EAAE,CAAC;IACd,yEAAyE;IACzE,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED,MAAM,WAAW,GAAG;IAClB;;;OAGG;IACH,QAAQ,CAAC,IAAI,CAAC,EAAE,MAAM,CAAC;CACxB;AAED,4CAA4C;AAC5C,MAAM,WAAW,UAAU;IACzB,6BAA6B;IAC7B,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,oCAAoC;IACpC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,4DAA4D;IAC5D,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,2CAA2C;IAC3C,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,mDAAmD;IACnD,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB;AAED,oCAAoC;AACpC,MAAM,WAAW,kBAAkB;IACjC,4BAA4B;IAC5B,KAAK,CAAC,EAAE,oBAAoB,EAAE,CAAC;IAC/B,qEAAqE;IACrE,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,yEAAyE;IACzE,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED,MAAM,WAAW,oBAAoB;IACnC,gCAAgC;IAChC,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,0CAA0C;IAC1C,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,iEAAiE;IACjE,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,kCAAkC;IAClC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,oEAAoE;IACpE,YAAY,CAAC,EAAE,IAAI,CAAC;IACpB,gCAAgC;IAChC,IAAI,CAAC,EAAE;QAAE,CAAC,YAAY,EAAE,MAAM,GAAG,MAAM,CAAA;KAAE,CAAC;IAC1C,iDAAiD;IACjD,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,8DAA8D;IAC9D,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED,6CAA6C;AAC7C,MAAM,WAAW,kBAAkB;IACjC,4BAA4B;IAC5B,KAAK,CAAC,EAAE,QAAQ,EAAE,CAAC;IACnB,yEAAyE;IACzE,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED,MAAM,WAAW,QAAQ;IACvB;;;OAGG;IACH,QAAQ,CAAC,IAAI,CAAC,EAAE,MAAM,CAAC;IACvB;;;OAGG;IACH,QAAQ,CAAC,MAAM,CAAC,EAAE,cAAc,CAAC;IACjC,gFAAgF;IAChF,OAAO,EAAE,cAAc,EAAE,CAAC;IAC1B,0RAA0R;IAC1R,eAAe,CAAC,EAAE,eAAe,CAAC;IAClC;;;OAGG;IACH,QAAQ,CAAC,OAAO,CAAC,EAAE,IAAI,CAAC;IACxB;;;OAGG;IACH,QAAQ,CAAC,OAAO,CAAC,EAAE,IAAI,CAAC;IACxB,uPAAuP;IACvP,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB;;;OAGG;IACH,QAAQ,CAAC,IAAI,CAAC,EAAE,MAAM,CAAC;IACvB;;;OAGG;IACH,QAAQ,CAAC,UAAU,CAAC,EAAE,MAAM,CAAC;IAC7B,gCAAgC;IAChC,IAAI,CAAC,EAAE;QAAE,CAAC,YAAY,EAAE,MAAM,GAAG,MAAM,CAAA;KAAE,CAAC;IAC1C;;;OAGG;IACH,QAAQ,CAAC,IAAI,CAAC,EAAE,MAAM,CAAC;CACxB;AAED,uCAAuC;AACvC,MAAM,WAAW,cAAc;IAC7B,6CAA6C;IAC7C,GAAG,EAAE,MAAM,CAAC;IACZ,+CAA+C;IAC/C,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED,4CAA4C;AAC5C,MAAM,WAAW,wBAAwB;IACvC,0CAA0C;IAC1C,MAAM,CAAC,EAAE,cAAc,CAAC;CACzB;AAED,oCAAoC;AACpC,MAAM,WAAW,eAAe;IAC9B,4BAA4B;IAC5B,KAAK,CAAC,EAAE,KAAK,EAAE,CAAC;IAChB,yEAAyE;IACzE,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED,MAAM,WAAW,KAAK;IACpB;;;OAGG;IACH,QAAQ,CAAC,IAAI,CAAC,EAAE,MAAM,CAAC;CACxB;AAED,2CAA2C;AAC3C,MAAM,WAAW,gBAAgB;IAC/B,sCAAsC;IACtC,EAAE,EAAE,MAAM,CAAC;IACX,0CAA0C;IAC1C,MAAM,EAAE,KAAK,CAAC;IACd,4FAA4F;IAC5F,KAAK,CAAC,EAAE,WAAW,CAAC;CACrB;AAED,+BAA+B;AAC/B,MAAM,WAAW,WAAW;IAC1B,kDAAkD;IAClD,IAAI,EAAE,MAAM,CAAC;IACb,oDAAoD;IACpD,OAAO,EAAE,MAAM,CAAC;IAChB,iFAAiF;IACjF,OAAO,CAAC,EAAE,WAAW,EAAE,CAAC;IACxB,8FAA8F;IAC9F,UAAU,CAAC,EAAE,UAAU,CAAC;CACzB;AAED,gEAAgE;AAChE,MAAM,WAAW,UAAU;IACzB,kDAAkD;IAClD,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,8FAA8F;IAC9F,UAAU,CAAC,EAAE,UAAU,CAAC;CACzB;AAED,6DAA6D;AAC7D,MAAM,WAAW,6BAA6B;IAC5C,6HAA6H;IAC7H,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,+DAA+D;AAC/D,MAAM,WAAW,+BAA+B;IAC9C,6HAA6H;IAC7H,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,kEAAkE;AAClE,MAAM,WAAW,kCAAkC;IACjD,6HAA6H;IAC7H,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,qEAAqE;IACrE,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED,oEAAoE;AACpE,MAAM,WAAW,oCAAoC;IACnD,6HAA6H;IAC7H,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,qEAAqE;IACrE,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED,iEAAiE;AACjE,MAAM,WAAW,iCAAiC;IAChD,6HAA6H;IAC7H,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,qEAAqE;IACrE,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED,iEAAiE;AACjE,MAAM,WAAW,iCAAiC;IAChD,6HAA6H;IAC7H,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,qEAAqE;IACrE,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED,oEAAoE;AACpE,MAAM,WAAW,oCAAoC;IACnD,6HAA6H;IAC7H,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,qEAAqE;IACrE,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED,mEAAmE;AACnE,MAAM,WAAW,mCAAmC;IAClD,6HAA6H;IAC7H,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,qEAAqE;IACrE,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED,kEAAkE;AAClE,MAAM,WAAW,kCAAkC;IACjD,6HAA6H;IAC7H,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,oEAAoE;AACpE,MAAM,WAAW,oCAAoC;IACnD,6HAA6H;IAC7H,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,iEAAiE;AACjE,MAAM,WAAW,iCAAiC;IAChD,6HAA6H;IAC7H,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,qEAAqE;IACrE,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,2CAA2C;IAC3C,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED,oEAAoE;AACpE,MAAM,WAAW,oCAAoC;IACnD,6HAA6H;IAC7H,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,qEAAqE;IACrE,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,2CAA2C;IAC3C,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,iEAAiE;IACjE,iBAAiB,CAAC,EAAE,MAAM,CAAC;CAC5B;AAED,oEAAoE;AACpE,MAAM,WAAW,oCAAoC;IACnD,6HAA6H;IAC7H,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,qEAAqE;IACrE,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,2CAA2C;IAC3C,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED,mEAAmE;AACnE,MAAM,WAAW,mCAAmC;IAClD,6HAA6H;IAC7H,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,qEAAqE;IACrE,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,2CAA2C;IAC3C,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED,+DAA+D;AAC/D,MAAM,WAAW,+BAA+B;IAC9C,6HAA6H;IAC7H,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,iEAAiE;AACjE,MAAM,WAAW,iCAAiC;IAChD,6HAA6H;IAC7H,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,6DAA6D;AAC7D,MAAM,WAAW,6BAA6B;IAC5C,6HAA6H;IAC7H,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,qEAAqE;IACrE,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED,gEAAgE;AAChE,MAAM,WAAW,gCAAgC;IAC/C,6HAA6H;IAC7H,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,qEAAqE;IACrE,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED,kEAAkE;AAClE,MAAM,WAAW,kCAAkC;IACjD,6HAA6H;IAC7H,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,qEAAqE;IACrE,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED,oEAAoE;AACpE,MAAM,WAAW,oCAAoC;IACnD,6HAA6H;IAC7H,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,qEAAqE;IACrE,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED,iEAAiE;AACjE,MAAM,WAAW,iCAAiC;IAChD,6HAA6H;IAC7H,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,sEAAsE;AACtE,MAAM,WAAW,sCAAsC;IACrD,6HAA6H;IAC7H,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,qEAAqE;IACrE,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED,sEAAsE;AACtE,MAAM,WAAW,sCAAsC;IACrD,6HAA6H;IAC7H,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,mEAAmE;AACnE,MAAM,WAAW,mCAAmC;IAClD,6HAA6H;IAC7H,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,sEAAsE;AACtE,MAAM,WAAW,sCAAsC;IACrD,6HAA6H;IAC7H,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,qEAAqE;IACrE,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED,uEAAuE;AACvE,oBAAY,mBAAmB;IAC7B,GAAG,QAAQ;IACX,KAAK,UAAU;IACf,WAAW,iBAAiB;IAC5B,KAAK,UAAU;IACf,YAAY,kBAAkB;IAC9B,IAAI,SAAS;IACb,MAAM,WAAW;IACjB,IAAI,SAAS;CACd;AAED;;;;;;;;;;;;;GAaG;AACH,MAAM,MAAM,cAAc,GAAG,MAAM,CAAC;AAEpC,uEAAuE;AACvE,oBAAY,mBAAmB;IAC7B,IAAI,SAAS;IACb,MAAM,WAAW;IACjB,OAAO,YAAY;IACnB,eAAe,qBAAqB;IACpC,OAAO,YAAY;IACnB,OAAO,YAAY;IACnB,eAAe,qBAAqB;IACpC,IAAI,SAAS;IACb,UAAU,gBAAgB;IAC1B,IAAI,SAAS;IACb,IAAI,SAAS;CACd;AAED;;;;;;;;;;;;;;;;GAgBG;AACH,MAAM,MAAM,cAAc,GAAG,MAAM,CAAC;AAEpC,uEAAuE;AACvE,oBAAY,mBAAmB;IAC7B,YAAY,iBAAiB;IAC7B,KAAK,UAAU;IACf,QAAQ,aAAa;IACrB,MAAM,WAAW;CAClB;AAED;;;;;;;;;GASG;AACH,MAAM,MAAM,cAAc,GAAG,MAAM,CAAC;AAEpC,wEAAwE;AACxE,oBAAY,oBAAoB;IAC9B,GAAG,QAAQ;IACX,QAAQ,cAAc;CACvB;AAED;;;;;;;GAOG;AACH,MAAM,MAAM,eAAe,GAAG,MAAM,CAAC;AAErC,oEAAoE;AACpE,oBAAY,gBAAgB;IAC1B,IAAI,SAAS;CACd;AAED;;;;;;GAMG;AACH,MAAM,MAAM,WAAW,GAAG,MAAM,CAAC;AACjC,gCAAgC;AAChC,MAAM,MAAM,KAAK,GACb,YAAY,GACZ,SAAS,GACT,WAAW,GACX,QAAQ,GACR,UAAU,CAAC;AAEf,2BAA2B;AAC3B,MAAM,WAAW,qBAAsB,SAAQ,UAAU,CAAC,gBAAgB;IACxE,kDAAkD;IAClD,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,gHAAgH;IAChH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,2FAA2F;IAC3F,cAAc,CAAC,EAAE,MAAM,CAAC;CACzB;AAED,wDAAwD;AACxD,MAAM,MAAM,eAAe,GAAG,6BAA6B,GAAG,aAAa,CAAC;AAE5E,2BAA2B;AAC3B,MAAM,WAAW,uBAAwB,SAAQ,UAAU,CAAC,gBAAgB;IAC1E,kDAAkD;IAClD,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,gHAAgH;IAChH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,2FAA2F;IAC3F,cAAc,CAAC,EAAE,MAAM,CAAC;CACzB;AAED,0DAA0D;AAC1D,MAAM,MAAM,iBAAiB,GAAG,+BAA+B,CAAC;AAEhE,2BAA2B;AAC3B,MAAM,WAAW,0BACf,SAAQ,UAAU,CAAC,gBAAgB;IACnC,gHAAgH;IAChH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,2FAA2F;IAC3F,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,mCAAmC;IACnC,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,oCAAoC;IACpC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,0EAA0E;IAC1E,MAAM,CAAC,EAAE,cAAc,EAAE,CAAC;IAC1B,qJAAqJ;IACrJ,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,oGAAoG;IACpG,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,2GAA2G;IAC3G,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,6DAA6D;AAC7D,MAAM,MAAM,oBAAoB,GAAG,kCAAkC,GACnE,kBAAkB,CAAC;AAErB,2BAA2B;AAC3B,MAAM,WAAW,4BACf,SAAQ,UAAU,CAAC,gBAAgB;IACnC,gHAAgH;IAChH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,2FAA2F;IAC3F,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,mCAAmC;IACnC,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,oCAAoC;IACpC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,0EAA0E;IAC1E,MAAM,CAAC,EAAE,cAAc,EAAE,CAAC;IAC1B,uGAAuG;IACvG,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,oGAAoG;IACpG,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,2GAA2G;IAC3G,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,+DAA+D;AAC/D,MAAM,MAAM,sBAAsB,GAAG,oCAAoC,CAAC;AAE1E,2BAA2B;AAC3B,MAAM,WAAW,yBAA0B,SAAQ,UAAU,CAAC,gBAAgB;IAC5E,2FAA2F;IAC3F,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,8CAA8C;IAC9C,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,0EAA0E;IAC1E,MAAM,CAAC,EAAE,cAAc,EAAE,CAAC;IAC1B,oGAAoG;IACpG,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,2GAA2G;IAC3G,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,4DAA4D;AAC5D,MAAM,MAAM,mBAAmB,GAAG,iCAAiC,GACjE,oBAAoB,CAAC;AAEvB,2BAA2B;AAC3B,MAAM,WAAW,yBAA0B,SAAQ,UAAU,CAAC,gBAAgB;IAC5E,4CAA4C;IAC5C,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,oGAAoG;IACpG,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,2GAA2G;IAC3G,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,+BAA+B;IAC/B,MAAM,CAAC,EAAE,oBAAoB,CAAC;CAC/B;AAED,4DAA4D;AAC5D,MAAM,MAAM,mBAAmB,GAAG,iCAAiC,GACjE,oBAAoB,CAAC;AAEvB,2BAA2B;AAC3B,MAAM,WAAW,4BACf,SAAQ,UAAU,CAAC,gBAAgB;IACnC,4CAA4C;IAC5C,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,oGAAoG;IACpG,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB;AAED,+DAA+D;AAC/D,MAAM,MAAM,sBAAsB,GAAG,oCAAoC,GACvE,oBAAoB,CAAC;AAEvB,2BAA2B;AAC3B,MAAM,WAAW,2BACf,SAAQ,UAAU,CAAC,gBAAgB;IACnC,2FAA2F;IAC3F,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,8CAA8C;IAC9C,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,0EAA0E;IAC1E,MAAM,CAAC,EAAE,cAAc,EAAE,CAAC;IAC1B,oGAAoG;IACpG,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,2GAA2G;IAC3G,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,8DAA8D;AAC9D,MAAM,MAAM,qBAAqB,GAAG,mCAAmC,CAAC;AAExE,2BAA2B;AAC3B,MAAM,WAAW,0BACf,SAAQ,UAAU,CAAC,gBAAgB;IACnC,uDAAuD;IACvD,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,gHAAgH;IAChH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,0EAA0E;IAC1E,MAAM,CAAC,EAAE,cAAc,EAAE,CAAC;IAC1B,kEAAkE;IAClE,MAAM,CAAC,EAAE,cAAc,EAAE,CAAC;CAC3B;AAED,6DAA6D;AAC7D,MAAM,MAAM,oBAAoB,GAAG,kCAAkC,GACnE,kBAAkB,CAAC;AAErB,2BAA2B;AAC3B,MAAM,WAAW,4BACf,SAAQ,UAAU,CAAC,gBAAgB;IACnC,gHAAgH;IAChH,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED,+DAA+D;AAC/D,MAAM,MAAM,sBAAsB,GAAG,oCAAoC,CAAC;AAE1E,2BAA2B;AAC3B,MAAM,WAAW,yBAA0B,SAAQ,UAAU,CAAC,gBAAgB;IAC5E,oGAAoG;IACpG,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,2GAA2G;IAC3G,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,0EAA0E;IAC1E,MAAM,CAAC,EAAE,cAAc,EAAE,CAAC;CAC3B;AAED,4DAA4D;AAC5D,MAAM,MAAM,mBAAmB,GAAG,iCAAiC,GAAG,QAAQ,CAAC;AAE/E,2BAA2B;AAC3B,MAAM,WAAW,4BACf,SAAQ,UAAU,CAAC,gBAAgB;IACnC,sDAAsD;IACtD,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,iGAAiG;IACjG,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAED,+DAA+D;AAC/D,MAAM,MAAM,sBAAsB,GAAG,oCAAoC,GACvE,QAAQ,CAAC;AAEX,2BAA2B;AAC3B,MAAM,WAAW,4BACf,SAAQ,UAAU,CAAC,gBAAgB;IACnC,oGAAoG;IACpG,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,2GAA2G;IAC3G,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,+DAA+D;AAC/D,MAAM,MAAM,sBAAsB,GAAG,oCAAoC,GACvE,QAAQ,CAAC;AAEX,2BAA2B;AAC3B,MAAM,WAAW,2BACf,SAAQ,UAAU,CAAC,gBAAgB;IACnC,oGAAoG;IACpG,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,2GAA2G;IAC3G,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,8DAA8D;AAC9D,MAAM,MAAM,qBAAqB,GAAG,mCAAmC,CAAC;AAExE,2BAA2B;AAC3B,MAAM,WAAW,uBAAwB,SAAQ,UAAU,CAAC,gBAAgB;IAC1E,oDAAoD;IACpD,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,gHAAgH;IAChH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,2FAA2F;IAC3F,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,0EAA0E;IAC1E,MAAM,CAAC,EAAE,WAAW,EAAE,CAAC;CACxB;AAED,0DAA0D;AAC1D,MAAM,MAAM,iBAAiB,GAAG,+BAA+B,GAC7D,eAAe,CAAC;AAElB,2BAA2B;AAC3B,MAAM,WAAW,yBAA0B,SAAQ,UAAU,CAAC,gBAAgB;IAC5E,oDAAoD;IACpD,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,gHAAgH;IAChH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,2FAA2F;IAC3F,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,0EAA0E;IAC1E,MAAM,CAAC,EAAE,WAAW,EAAE,CAAC;CACxB;AAED,4DAA4D;AAC5D,MAAM,MAAM,mBAAmB,GAAG,iCAAiC,CAAC;AAEpE,2BAA2B;AAC3B,MAAM,WAAW,qBAAsB,SAAQ,UAAU,CAAC,gBAAgB;IACxE,mDAAmD;IACnD,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,oGAAoG;IACpG,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,2GAA2G;IAC3G,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,wDAAwD;AACxD,MAAM,MAAM,eAAe,GAAG,6BAA6B,GACzD,oBAAoB,CAAC;AAEvB,2BAA2B;AAC3B,MAAM,WAAW,wBAAyB,SAAQ,UAAU,CAAC,gBAAgB;IAC3E,qDAAqD;IACrD,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,oGAAoG;IACpG,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,2GAA2G;IAC3G,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,2DAA2D;AAC3D,MAAM,MAAM,kBAAkB,GAAG,gCAAgC,GAC/D,oBAAoB,CAAC;AAEvB,2BAA2B;AAC3B,MAAM,WAAW,0BACf,SAAQ,UAAU,CAAC,gBAAgB;IACnC,gHAAgH;IAChH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,2FAA2F;IAC3F,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,mCAAmC;IACnC,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,oCAAoC;IACpC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,0EAA0E;IAC1E,MAAM,CAAC,EAAE,cAAc,EAAE,CAAC;CAC3B;AAED,6DAA6D;AAC7D,MAAM,MAAM,oBAAoB,GAAG,kCAAkC,GACnE,kBAAkB,CAAC;AAErB,2BAA2B;AAC3B,MAAM,WAAW,4BACf,SAAQ,UAAU,CAAC,gBAAgB;IACnC,gHAAgH;IAChH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,2FAA2F;IAC3F,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,mCAAmC;IACnC,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,oCAAoC;IACpC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,0EAA0E;IAC1E,MAAM,CAAC,EAAE,cAAc,EAAE,CAAC;CAC3B;AAED,+DAA+D;AAC/D,MAAM,MAAM,sBAAsB,GAAG,oCAAoC,CAAC;AAE1E,2BAA2B;AAC3B,MAAM,WAAW,iCACf,SAAQ,UAAU,CAAC,gBAAgB;CAAG;AAExC,oEAAoE;AACpE,MAAM,MAAM,2BAA2B,GAAG,gBAAgB,CAAC;AAE3D,2BAA2B;AAC3B,MAAM,WAAW,yBAA0B,SAAQ,UAAU,CAAC,gBAAgB;IAC5E,kDAAkD;IAClD,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,gHAAgH;IAChH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,2FAA2F;IAC3F,cAAc,CAAC,EAAE,MAAM,CAAC;CACzB;AAED,4DAA4D;AAC5D,MAAM,MAAM,mBAAmB,GAAG,iCAAiC,GACjE,aAAa,CAAC;AAEhB,2BAA2B;AAC3B,MAAM,WAAW,8BACf,SAAQ,UAAU,CAAC,gBAAgB;IACnC,gHAAgH;IAChH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,2FAA2F;IAC3F,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,mCAAmC;IACnC,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,oCAAoC;IACpC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,0EAA0E;IAC1E,MAAM,CAAC,EAAE,cAAc,EAAE,CAAC;IAC1B,qJAAqJ;IACrJ,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,oGAAoG;IACpG,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,2GAA2G;IAC3G,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,iEAAiE;AACjE,MAAM,MAAM,wBAAwB,GAAG,sCAAsC,GAC3E,kBAAkB,CAAC;AAErB,2BAA2B;AAC3B,MAAM,WAAW,8BACf,SAAQ,UAAU,CAAC,gBAAgB;IACnC,uDAAuD;IACvD,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,gHAAgH;IAChH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,0EAA0E;IAC1E,MAAM,CAAC,EAAE,cAAc,EAAE,CAAC;IAC1B,kEAAkE;IAClE,MAAM,CAAC,EAAE,cAAc,EAAE,CAAC;CAC3B;AAED,iEAAiE;AACjE,MAAM,MAAM,wBAAwB,GAAG,sCAAsC,GAC3E,kBAAkB,CAAC;AAErB,2BAA2B;AAC3B,MAAM,WAAW,2BACf,SAAQ,UAAU,CAAC,gBAAgB;IACnC,oDAAoD;IACpD,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,gHAAgH;IAChH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,2FAA2F;IAC3F,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,0EAA0E;IAC1E,MAAM,CAAC,EAAE,WAAW,EAAE,CAAC;CACxB;AAED,8DAA8D;AAC9D,MAAM,MAAM,qBAAqB,GAAG,mCAAmC,GACrE,eAAe,CAAC;AAElB,2BAA2B;AAC3B,MAAM,WAAW,8BACf,SAAQ,UAAU,CAAC,gBAAgB;IACnC,gHAAgH;IAChH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,2FAA2F;IAC3F,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,mCAAmC;IACnC,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,oCAAoC;IACpC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,0EAA0E;IAC1E,MAAM,CAAC,EAAE,cAAc,EAAE,CAAC;CAC3B;AAED,iEAAiE;AACjE,MAAM,MAAM,wBAAwB,GAAG,sCAAsC,GAC3E,kBAAkB,CAAC;AAErB,2BAA2B;AAC3B,MAAM,WAAW,6BACf,SAAQ,UAAU,CAAC,oBAAoB;IACvC,gEAAgE;IAChE,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,kBAAkB;IAClB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,iCAAiC;IACjC,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB"}
|
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/*
|
|
3
|
-
* Copyright (c) Microsoft Corporation.
|
|
4
|
-
* Licensed under the MIT License.
|
|
5
|
-
*
|
|
6
|
-
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
7
|
-
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
|
8
|
-
*/
|
|
9
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10
|
-
exports.KnownLabelFields = exports.KnownCompositionType = exports.KnownSnapshotStatus = exports.KnownSnapshotFields = exports.KnownKeyValueFields = void 0;
|
|
11
|
-
/** Known values of {@link KeyValueFields} that the service accepts. */
|
|
12
|
-
var KnownKeyValueFields;
|
|
13
|
-
(function (KnownKeyValueFields) {
|
|
14
|
-
KnownKeyValueFields["Key"] = "key";
|
|
15
|
-
KnownKeyValueFields["Label"] = "label";
|
|
16
|
-
KnownKeyValueFields["ContentType"] = "content_type";
|
|
17
|
-
KnownKeyValueFields["Value"] = "value";
|
|
18
|
-
KnownKeyValueFields["LastModified"] = "last_modified";
|
|
19
|
-
KnownKeyValueFields["Tags"] = "tags";
|
|
20
|
-
KnownKeyValueFields["Locked"] = "locked";
|
|
21
|
-
KnownKeyValueFields["Etag"] = "etag";
|
|
22
|
-
})(KnownKeyValueFields || (exports.KnownKeyValueFields = KnownKeyValueFields = {}));
|
|
23
|
-
/** Known values of {@link SnapshotFields} that the service accepts. */
|
|
24
|
-
var KnownSnapshotFields;
|
|
25
|
-
(function (KnownSnapshotFields) {
|
|
26
|
-
KnownSnapshotFields["Name"] = "name";
|
|
27
|
-
KnownSnapshotFields["Status"] = "status";
|
|
28
|
-
KnownSnapshotFields["Filters"] = "filters";
|
|
29
|
-
KnownSnapshotFields["CompositionType"] = "composition_type";
|
|
30
|
-
KnownSnapshotFields["Created"] = "created";
|
|
31
|
-
KnownSnapshotFields["Expires"] = "expires";
|
|
32
|
-
KnownSnapshotFields["RetentionPeriod"] = "retention_period";
|
|
33
|
-
KnownSnapshotFields["Size"] = "size";
|
|
34
|
-
KnownSnapshotFields["ItemsCount"] = "items_count";
|
|
35
|
-
KnownSnapshotFields["Tags"] = "tags";
|
|
36
|
-
KnownSnapshotFields["Etag"] = "etag";
|
|
37
|
-
})(KnownSnapshotFields || (exports.KnownSnapshotFields = KnownSnapshotFields = {}));
|
|
38
|
-
/** Known values of {@link SnapshotStatus} that the service accepts. */
|
|
39
|
-
var KnownSnapshotStatus;
|
|
40
|
-
(function (KnownSnapshotStatus) {
|
|
41
|
-
KnownSnapshotStatus["Provisioning"] = "provisioning";
|
|
42
|
-
KnownSnapshotStatus["Ready"] = "ready";
|
|
43
|
-
KnownSnapshotStatus["Archived"] = "archived";
|
|
44
|
-
KnownSnapshotStatus["Failed"] = "failed";
|
|
45
|
-
})(KnownSnapshotStatus || (exports.KnownSnapshotStatus = KnownSnapshotStatus = {}));
|
|
46
|
-
/** Known values of {@link CompositionType} that the service accepts. */
|
|
47
|
-
var KnownCompositionType;
|
|
48
|
-
(function (KnownCompositionType) {
|
|
49
|
-
KnownCompositionType["Key"] = "key";
|
|
50
|
-
KnownCompositionType["KeyLabel"] = "key_label";
|
|
51
|
-
})(KnownCompositionType || (exports.KnownCompositionType = KnownCompositionType = {}));
|
|
52
|
-
/** Known values of {@link LabelFields} that the service accepts. */
|
|
53
|
-
var KnownLabelFields;
|
|
54
|
-
(function (KnownLabelFields) {
|
|
55
|
-
KnownLabelFields["Name"] = "name";
|
|
56
|
-
})(KnownLabelFields || (exports.KnownLabelFields = KnownLabelFields = {}));
|
|
57
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/generated/models/index.ts"],"names":[],"mappings":";AAAA;;;;;;GAMG;;;AAiXH,uEAAuE;AACvE,IAAY,mBASX;AATD,WAAY,mBAAmB;IAC7B,kCAAW,CAAA;IACX,sCAAe,CAAA;IACf,mDAA4B,CAAA;IAC5B,sCAAe,CAAA;IACf,qDAA8B,CAAA;IAC9B,oCAAa,CAAA;IACb,wCAAiB,CAAA;IACjB,oCAAa,CAAA;AACf,CAAC,EATW,mBAAmB,mCAAnB,mBAAmB,QAS9B;AAkBD,uEAAuE;AACvE,IAAY,mBAYX;AAZD,WAAY,mBAAmB;IAC7B,oCAAa,CAAA;IACb,wCAAiB,CAAA;IACjB,0CAAmB,CAAA;IACnB,2DAAoC,CAAA;IACpC,0CAAmB,CAAA;IACnB,0CAAmB,CAAA;IACnB,2DAAoC,CAAA;IACpC,oCAAa,CAAA;IACb,iDAA0B,CAAA;IAC1B,oCAAa,CAAA;IACb,oCAAa,CAAA;AACf,CAAC,EAZW,mBAAmB,mCAAnB,mBAAmB,QAY9B;AAqBD,uEAAuE;AACvE,IAAY,mBAKX;AALD,WAAY,mBAAmB;IAC7B,oDAA6B,CAAA;IAC7B,sCAAe,CAAA;IACf,4CAAqB,CAAA;IACrB,wCAAiB,CAAA;AACnB,CAAC,EALW,mBAAmB,mCAAnB,mBAAmB,QAK9B;AAcD,wEAAwE;AACxE,IAAY,oBAGX;AAHD,WAAY,oBAAoB;IAC9B,mCAAW,CAAA;IACX,8CAAsB,CAAA;AACxB,CAAC,EAHW,oBAAoB,oCAApB,oBAAoB,QAG/B;AAYD,oEAAoE;AACpE,IAAY,gBAEX;AAFD,WAAY,gBAAgB;IAC1B,iCAAa,CAAA;AACf,CAAC,EAFW,gBAAgB,gCAAhB,gBAAgB,QAE3B","sourcesContent":["/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport * as coreClient from \"@azure/core-client\";\n\n/** The result of a list request. */\nexport interface KeyListResult {\n /** The collection value. */\n items?: Key[];\n /** The URI that can be used to request the next set of paged results. */\n nextLink?: string;\n}\n\nexport interface Key {\n /**\n * The name of the key.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly name?: string;\n}\n\n/** Azure App Configuration error object. */\nexport interface ErrorModel {\n /** The type of the error. */\n type?: string;\n /** A brief summary of the error. */\n title?: string;\n /** The name of the parameter that resulted in the error. */\n name?: string;\n /** A detailed description of the error. */\n detail?: string;\n /** The HTTP status code that the error maps to. */\n status?: number;\n}\n\n/** The result of a list request. */\nexport interface KeyValueListResult {\n /** The collection value. */\n items?: ConfigurationSetting[];\n /** An identifier representing the returned state of the resource. */\n etag?: string;\n /** The URI that can be used to request the next set of paged results. */\n nextLink?: string;\n}\n\nexport interface ConfigurationSetting {\n /** The key of the key-value. */\n key?: string;\n /** The label the key-value belongs to. */\n label?: string;\n /** The content type of the value stored within the key-value. */\n contentType?: string;\n /** The value of the key-value. */\n value?: string;\n /** A date representing the last time the key-value was modified. */\n lastModified?: Date;\n /** The tags of the key-value */\n tags?: { [propertyName: string]: string };\n /** Indicates whether the key-value is locked. */\n isReadOnly?: boolean;\n /** A value representing the current state of the resource. */\n etag?: string;\n}\n\n/** The result of a snapshot list request. */\nexport interface SnapshotListResult {\n /** The collection value. */\n items?: Snapshot[];\n /** The URI that can be used to request the next set of paged results. */\n nextLink?: string;\n}\n\nexport interface Snapshot {\n /**\n * The name of the snapshot.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly name?: string;\n /**\n * The current status of the snapshot.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly status?: SnapshotStatus;\n /** A list of filters used to filter the key-values included in the snapshot. */\n filters: KeyValueFilter[];\n /** The composition type describes how the key-values within the snapshot are composed. The 'key' composition type ensures there are no two key-values containing the same key. The 'key_label' composition type ensures there are no two key-values containing the same key and label. */\n compositionType?: CompositionType;\n /**\n * The time that the snapshot was created.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly created?: Date;\n /**\n * The time that the snapshot will expire.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly expires?: Date;\n /** The amount of time, in seconds, that a snapshot will remain in the archived state before expiring. This property is only writable during the creation of a snapshot. If not specified, the default lifetime of key-value revisions will be used. */\n retentionPeriod?: number;\n /**\n * The size in bytes of the snapshot.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly size?: number;\n /**\n * The amount of key-values in the snapshot.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly itemsCount?: number;\n /** The tags of the snapshot. */\n tags?: { [propertyName: string]: string };\n /**\n * A value representing the current state of the snapshot.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly etag?: string;\n}\n\n/** Enables filtering of key-values. */\nexport interface KeyValueFilter {\n /** Filters key-values by their key field. */\n key: string;\n /** Filters key-values by their label field. */\n label?: string;\n}\n\n/** Parameters used to update a snapshot. */\nexport interface SnapshotUpdateParameters {\n /** The desired status of the snapshot. */\n status?: SnapshotStatus;\n}\n\n/** The result of a list request. */\nexport interface LabelListResult {\n /** The collection value. */\n items?: Label[];\n /** The URI that can be used to request the next set of paged results. */\n nextLink?: string;\n}\n\nexport interface Label {\n /**\n * The name of the label.\n * NOTE: This property will not be serialized. It can only be populated by the server.\n */\n readonly name?: string;\n}\n\n/** Details of a long running operation. */\nexport interface OperationDetails {\n /** The unique id of the operation. */\n id: string;\n /** The current status of the operation */\n status: State;\n /** An error, available when the status is `Failed`, describing why the operation failed. */\n error?: ErrorDetail;\n}\n\n/** The details of an error. */\nexport interface ErrorDetail {\n /** One of a server-defined set of error codes. */\n code: string;\n /** A human-readable representation of the error. */\n message: string;\n /** An array of details about specific errors that led to this reported error. */\n details?: ErrorDetail[];\n /** An object containing more specific information than the current object about the error. */\n innererror?: InnerError;\n}\n\n/** An object containing specific information about an error. */\nexport interface InnerError {\n /** One of a server-defined set of error codes. */\n code?: string;\n /** An object containing more specific information than the current object about the error. */\n innererror?: InnerError;\n}\n\n/** Defines headers for GeneratedClient_getKeys operation. */\nexport interface GeneratedClientGetKeysHeaders {\n /** Enables real-time consistency between requests by providing the returned value in the next request made to the server. */\n syncToken?: string;\n}\n\n/** Defines headers for GeneratedClient_checkKeys operation. */\nexport interface GeneratedClientCheckKeysHeaders {\n /** Enables real-time consistency between requests by providing the returned value in the next request made to the server. */\n syncToken?: string;\n}\n\n/** Defines headers for GeneratedClient_getKeyValues operation. */\nexport interface GeneratedClientGetKeyValuesHeaders {\n /** Enables real-time consistency between requests by providing the returned value in the next request made to the server. */\n syncToken?: string;\n /** An identifier representing the returned state of the resource. */\n eTag?: string;\n}\n\n/** Defines headers for GeneratedClient_checkKeyValues operation. */\nexport interface GeneratedClientCheckKeyValuesHeaders {\n /** Enables real-time consistency between requests by providing the returned value in the next request made to the server. */\n syncToken?: string;\n /** An identifier representing the returned state of the resource. */\n eTag?: string;\n}\n\n/** Defines headers for GeneratedClient_getKeyValue operation. */\nexport interface GeneratedClientGetKeyValueHeaders {\n /** Enables real-time consistency between requests by providing the returned value in the next request made to the server. */\n syncToken?: string;\n /** An identifier representing the returned state of the resource. */\n eTag?: string;\n}\n\n/** Defines headers for GeneratedClient_putKeyValue operation. */\nexport interface GeneratedClientPutKeyValueHeaders {\n /** Enables real-time consistency between requests by providing the returned value in the next request made to the server. */\n syncToken?: string;\n /** An identifier representing the returned state of the resource. */\n eTag?: string;\n}\n\n/** Defines headers for GeneratedClient_deleteKeyValue operation. */\nexport interface GeneratedClientDeleteKeyValueHeaders {\n /** Enables real-time consistency between requests by providing the returned value in the next request made to the server. */\n syncToken?: string;\n /** An identifier representing the returned state of the resource. */\n eTag?: string;\n}\n\n/** Defines headers for GeneratedClient_checkKeyValue operation. */\nexport interface GeneratedClientCheckKeyValueHeaders {\n /** Enables real-time consistency between requests by providing the returned value in the next request made to the server. */\n syncToken?: string;\n /** An identifier representing the returned state of the resource. */\n eTag?: string;\n}\n\n/** Defines headers for GeneratedClient_getSnapshots operation. */\nexport interface GeneratedClientGetSnapshotsHeaders {\n /** Enables real-time consistency between requests by providing the returned value in the next request made to the server. */\n syncToken?: string;\n}\n\n/** Defines headers for GeneratedClient_checkSnapshots operation. */\nexport interface GeneratedClientCheckSnapshotsHeaders {\n /** Enables real-time consistency between requests by providing the returned value in the next request made to the server. */\n syncToken?: string;\n}\n\n/** Defines headers for GeneratedClient_getSnapshot operation. */\nexport interface GeneratedClientGetSnapshotHeaders {\n /** Enables real-time consistency between requests by providing the returned value in the next request made to the server. */\n syncToken?: string;\n /** An identifier representing the returned state of the resource. */\n eTag?: string;\n /** Includes links to related resources. */\n link?: string;\n}\n\n/** Defines headers for GeneratedClient_createSnapshot operation. */\nexport interface GeneratedClientCreateSnapshotHeaders {\n /** Enables real-time consistency between requests by providing the returned value in the next request made to the server. */\n syncToken?: string;\n /** An identifier representing the returned state of the resource. */\n eTag?: string;\n /** Includes links to related resources. */\n link?: string;\n /** The URL to track the status of the long running operation. */\n operationLocation?: string;\n}\n\n/** Defines headers for GeneratedClient_updateSnapshot operation. */\nexport interface GeneratedClientUpdateSnapshotHeaders {\n /** Enables real-time consistency between requests by providing the returned value in the next request made to the server. */\n syncToken?: string;\n /** An identifier representing the returned state of the resource. */\n eTag?: string;\n /** Includes links to related resources. */\n link?: string;\n}\n\n/** Defines headers for GeneratedClient_checkSnapshot operation. */\nexport interface GeneratedClientCheckSnapshotHeaders {\n /** Enables real-time consistency between requests by providing the returned value in the next request made to the server. */\n syncToken?: string;\n /** An identifier representing the returned state of the resource. */\n eTag?: string;\n /** Includes links to related resources. */\n link?: string;\n}\n\n/** Defines headers for GeneratedClient_getLabels operation. */\nexport interface GeneratedClientGetLabelsHeaders {\n /** Enables real-time consistency between requests by providing the returned value in the next request made to the server. */\n syncToken?: string;\n}\n\n/** Defines headers for GeneratedClient_checkLabels operation. */\nexport interface GeneratedClientCheckLabelsHeaders {\n /** Enables real-time consistency between requests by providing the returned value in the next request made to the server. */\n syncToken?: string;\n}\n\n/** Defines headers for GeneratedClient_putLock operation. */\nexport interface GeneratedClientPutLockHeaders {\n /** Enables real-time consistency between requests by providing the returned value in the next request made to the server. */\n syncToken?: string;\n /** An identifier representing the returned state of the resource. */\n eTag?: string;\n}\n\n/** Defines headers for GeneratedClient_deleteLock operation. */\nexport interface GeneratedClientDeleteLockHeaders {\n /** Enables real-time consistency between requests by providing the returned value in the next request made to the server. */\n syncToken?: string;\n /** An identifier representing the returned state of the resource. */\n eTag?: string;\n}\n\n/** Defines headers for GeneratedClient_getRevisions operation. */\nexport interface GeneratedClientGetRevisionsHeaders {\n /** Enables real-time consistency between requests by providing the returned value in the next request made to the server. */\n syncToken?: string;\n /** An identifier representing the returned state of the resource. */\n eTag?: string;\n}\n\n/** Defines headers for GeneratedClient_checkRevisions operation. */\nexport interface GeneratedClientCheckRevisionsHeaders {\n /** Enables real-time consistency between requests by providing the returned value in the next request made to the server. */\n syncToken?: string;\n /** An identifier representing the returned state of the resource. */\n eTag?: string;\n}\n\n/** Defines headers for GeneratedClient_getKeysNext operation. */\nexport interface GeneratedClientGetKeysNextHeaders {\n /** Enables real-time consistency between requests by providing the returned value in the next request made to the server. */\n syncToken?: string;\n}\n\n/** Defines headers for GeneratedClient_getKeyValuesNext operation. */\nexport interface GeneratedClientGetKeyValuesNextHeaders {\n /** Enables real-time consistency between requests by providing the returned value in the next request made to the server. */\n syncToken?: string;\n /** An identifier representing the returned state of the resource. */\n eTag?: string;\n}\n\n/** Defines headers for GeneratedClient_getSnapshotsNext operation. */\nexport interface GeneratedClientGetSnapshotsNextHeaders {\n /** Enables real-time consistency between requests by providing the returned value in the next request made to the server. */\n syncToken?: string;\n}\n\n/** Defines headers for GeneratedClient_getLabelsNext operation. */\nexport interface GeneratedClientGetLabelsNextHeaders {\n /** Enables real-time consistency between requests by providing the returned value in the next request made to the server. */\n syncToken?: string;\n}\n\n/** Defines headers for GeneratedClient_getRevisionsNext operation. */\nexport interface GeneratedClientGetRevisionsNextHeaders {\n /** Enables real-time consistency between requests by providing the returned value in the next request made to the server. */\n syncToken?: string;\n /** An identifier representing the returned state of the resource. */\n eTag?: string;\n}\n\n/** Known values of {@link KeyValueFields} that the service accepts. */\nexport enum KnownKeyValueFields {\n Key = \"key\",\n Label = \"label\",\n ContentType = \"content_type\",\n Value = \"value\",\n LastModified = \"last_modified\",\n Tags = \"tags\",\n Locked = \"locked\",\n Etag = \"etag\"\n}\n\n/**\n * Defines values for KeyValueFields. \\\n * {@link KnownKeyValueFields} can be used interchangeably with KeyValueFields,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **key** \\\n * **label** \\\n * **content_type** \\\n * **value** \\\n * **last_modified** \\\n * **tags** \\\n * **locked** \\\n * **etag**\n */\nexport type KeyValueFields = string;\n\n/** Known values of {@link SnapshotFields} that the service accepts. */\nexport enum KnownSnapshotFields {\n Name = \"name\",\n Status = \"status\",\n Filters = \"filters\",\n CompositionType = \"composition_type\",\n Created = \"created\",\n Expires = \"expires\",\n RetentionPeriod = \"retention_period\",\n Size = \"size\",\n ItemsCount = \"items_count\",\n Tags = \"tags\",\n Etag = \"etag\"\n}\n\n/**\n * Defines values for SnapshotFields. \\\n * {@link KnownSnapshotFields} can be used interchangeably with SnapshotFields,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **name** \\\n * **status** \\\n * **filters** \\\n * **composition_type** \\\n * **created** \\\n * **expires** \\\n * **retention_period** \\\n * **size** \\\n * **items_count** \\\n * **tags** \\\n * **etag**\n */\nexport type SnapshotFields = string;\n\n/** Known values of {@link SnapshotStatus} that the service accepts. */\nexport enum KnownSnapshotStatus {\n Provisioning = \"provisioning\",\n Ready = \"ready\",\n Archived = \"archived\",\n Failed = \"failed\"\n}\n\n/**\n * Defines values for SnapshotStatus. \\\n * {@link KnownSnapshotStatus} can be used interchangeably with SnapshotStatus,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **provisioning** \\\n * **ready** \\\n * **archived** \\\n * **failed**\n */\nexport type SnapshotStatus = string;\n\n/** Known values of {@link CompositionType} that the service accepts. */\nexport enum KnownCompositionType {\n Key = \"key\",\n KeyLabel = \"key_label\"\n}\n\n/**\n * Defines values for CompositionType. \\\n * {@link KnownCompositionType} can be used interchangeably with CompositionType,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **key** \\\n * **key_label**\n */\nexport type CompositionType = string;\n\n/** Known values of {@link LabelFields} that the service accepts. */\nexport enum KnownLabelFields {\n Name = \"name\"\n}\n\n/**\n * Defines values for LabelFields. \\\n * {@link KnownLabelFields} can be used interchangeably with LabelFields,\n * this enum contains the known values that the service supports.\n * ### Known values supported by the service\n * **name**\n */\nexport type LabelFields = string;\n/** Defines values for State. */\nexport type State =\n | \"NotStarted\"\n | \"Running\"\n | \"Succeeded\"\n | \"Failed\"\n | \"Canceled\";\n\n/** Optional parameters. */\nexport interface GetKeysOptionalParams extends coreClient.OperationOptions {\n /** A filter for the name of the returned keys. */\n name?: string;\n /** Instructs the server to return elements that appear after the element referred to by the specified token. */\n after?: string;\n /** Requests the server to respond with the state of the resource at the specified time. */\n acceptDatetime?: string;\n}\n\n/** Contains response data for the getKeys operation. */\nexport type GetKeysResponse = GeneratedClientGetKeysHeaders & KeyListResult;\n\n/** Optional parameters. */\nexport interface CheckKeysOptionalParams extends coreClient.OperationOptions {\n /** A filter for the name of the returned keys. */\n name?: string;\n /** Instructs the server to return elements that appear after the element referred to by the specified token. */\n after?: string;\n /** Requests the server to respond with the state of the resource at the specified time. */\n acceptDatetime?: string;\n}\n\n/** Contains response data for the checkKeys operation. */\nexport type CheckKeysResponse = GeneratedClientCheckKeysHeaders;\n\n/** Optional parameters. */\nexport interface GetKeyValuesOptionalParams\n extends coreClient.OperationOptions {\n /** Instructs the server to return elements that appear after the element referred to by the specified token. */\n after?: string;\n /** Requests the server to respond with the state of the resource at the specified time. */\n acceptDatetime?: string;\n /** A filter used to match keys. */\n key?: string;\n /** A filter used to match labels */\n label?: string;\n /** Used to select what fields are present in the returned resource(s). */\n select?: KeyValueFields[];\n /** A filter used get key-values for a snapshot. The value should be the name of the snapshot. Not valid when used with 'key' and 'label' filters. */\n snapshot?: string;\n /** Used to perform an operation only if the targeted resource's etag matches the value provided. */\n ifMatch?: string;\n /** Used to perform an operation only if the targeted resource's etag does not match the value provided. */\n ifNoneMatch?: string;\n}\n\n/** Contains response data for the getKeyValues operation. */\nexport type GetKeyValuesResponse = GeneratedClientGetKeyValuesHeaders &\n KeyValueListResult;\n\n/** Optional parameters. */\nexport interface CheckKeyValuesOptionalParams\n extends coreClient.OperationOptions {\n /** Instructs the server to return elements that appear after the element referred to by the specified token. */\n after?: string;\n /** Requests the server to respond with the state of the resource at the specified time. */\n acceptDatetime?: string;\n /** A filter used to match keys. */\n key?: string;\n /** A filter used to match labels */\n label?: string;\n /** Used to select what fields are present in the returned resource(s). */\n select?: KeyValueFields[];\n /** A filter used get key-values for a snapshot. Not valid when used with 'key' and 'label' filters. */\n snapshot?: string;\n /** Used to perform an operation only if the targeted resource's etag matches the value provided. */\n ifMatch?: string;\n /** Used to perform an operation only if the targeted resource's etag does not match the value provided. */\n ifNoneMatch?: string;\n}\n\n/** Contains response data for the checkKeyValues operation. */\nexport type CheckKeyValuesResponse = GeneratedClientCheckKeyValuesHeaders;\n\n/** Optional parameters. */\nexport interface GetKeyValueOptionalParams extends coreClient.OperationOptions {\n /** Requests the server to respond with the state of the resource at the specified time. */\n acceptDatetime?: string;\n /** The label of the key-value to retrieve. */\n label?: string;\n /** Used to select what fields are present in the returned resource(s). */\n select?: KeyValueFields[];\n /** Used to perform an operation only if the targeted resource's etag matches the value provided. */\n ifMatch?: string;\n /** Used to perform an operation only if the targeted resource's etag does not match the value provided. */\n ifNoneMatch?: string;\n}\n\n/** Contains response data for the getKeyValue operation. */\nexport type GetKeyValueResponse = GeneratedClientGetKeyValueHeaders &\n ConfigurationSetting;\n\n/** Optional parameters. */\nexport interface PutKeyValueOptionalParams extends coreClient.OperationOptions {\n /** The label of the key-value to create. */\n label?: string;\n /** Used to perform an operation only if the targeted resource's etag matches the value provided. */\n ifMatch?: string;\n /** Used to perform an operation only if the targeted resource's etag does not match the value provided. */\n ifNoneMatch?: string;\n /** The key-value to create. */\n entity?: ConfigurationSetting;\n}\n\n/** Contains response data for the putKeyValue operation. */\nexport type PutKeyValueResponse = GeneratedClientPutKeyValueHeaders &\n ConfigurationSetting;\n\n/** Optional parameters. */\nexport interface DeleteKeyValueOptionalParams\n extends coreClient.OperationOptions {\n /** The label of the key-value to delete. */\n label?: string;\n /** Used to perform an operation only if the targeted resource's etag matches the value provided. */\n ifMatch?: string;\n}\n\n/** Contains response data for the deleteKeyValue operation. */\nexport type DeleteKeyValueResponse = GeneratedClientDeleteKeyValueHeaders &\n ConfigurationSetting;\n\n/** Optional parameters. */\nexport interface CheckKeyValueOptionalParams\n extends coreClient.OperationOptions {\n /** Requests the server to respond with the state of the resource at the specified time. */\n acceptDatetime?: string;\n /** The label of the key-value to retrieve. */\n label?: string;\n /** Used to select what fields are present in the returned resource(s). */\n select?: KeyValueFields[];\n /** Used to perform an operation only if the targeted resource's etag matches the value provided. */\n ifMatch?: string;\n /** Used to perform an operation only if the targeted resource's etag does not match the value provided. */\n ifNoneMatch?: string;\n}\n\n/** Contains response data for the checkKeyValue operation. */\nexport type CheckKeyValueResponse = GeneratedClientCheckKeyValueHeaders;\n\n/** Optional parameters. */\nexport interface GetSnapshotsOptionalParams\n extends coreClient.OperationOptions {\n /** A filter for the name of the returned snapshots. */\n name?: string;\n /** Instructs the server to return elements that appear after the element referred to by the specified token. */\n after?: string;\n /** Used to select what fields are present in the returned resource(s). */\n select?: SnapshotFields[];\n /** Used to filter returned snapshots by their status property. */\n status?: SnapshotStatus[];\n}\n\n/** Contains response data for the getSnapshots operation. */\nexport type GetSnapshotsResponse = GeneratedClientGetSnapshotsHeaders &\n SnapshotListResult;\n\n/** Optional parameters. */\nexport interface CheckSnapshotsOptionalParams\n extends coreClient.OperationOptions {\n /** Instructs the server to return elements that appear after the element referred to by the specified token. */\n after?: string;\n}\n\n/** Contains response data for the checkSnapshots operation. */\nexport type CheckSnapshotsResponse = GeneratedClientCheckSnapshotsHeaders;\n\n/** Optional parameters. */\nexport interface GetSnapshotOptionalParams extends coreClient.OperationOptions {\n /** Used to perform an operation only if the targeted resource's etag matches the value provided. */\n ifMatch?: string;\n /** Used to perform an operation only if the targeted resource's etag does not match the value provided. */\n ifNoneMatch?: string;\n /** Used to select what fields are present in the returned resource(s). */\n select?: SnapshotFields[];\n}\n\n/** Contains response data for the getSnapshot operation. */\nexport type GetSnapshotResponse = GeneratedClientGetSnapshotHeaders & Snapshot;\n\n/** Optional parameters. */\nexport interface CreateSnapshotOptionalParams\n extends coreClient.OperationOptions {\n /** Delay to wait until next poll, in milliseconds. */\n updateIntervalInMs?: number;\n /** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */\n resumeFrom?: string;\n}\n\n/** Contains response data for the createSnapshot operation. */\nexport type CreateSnapshotResponse = GeneratedClientCreateSnapshotHeaders &\n Snapshot;\n\n/** Optional parameters. */\nexport interface UpdateSnapshotOptionalParams\n extends coreClient.OperationOptions {\n /** Used to perform an operation only if the targeted resource's etag matches the value provided. */\n ifMatch?: string;\n /** Used to perform an operation only if the targeted resource's etag does not match the value provided. */\n ifNoneMatch?: string;\n}\n\n/** Contains response data for the updateSnapshot operation. */\nexport type UpdateSnapshotResponse = GeneratedClientUpdateSnapshotHeaders &\n Snapshot;\n\n/** Optional parameters. */\nexport interface CheckSnapshotOptionalParams\n extends coreClient.OperationOptions {\n /** Used to perform an operation only if the targeted resource's etag matches the value provided. */\n ifMatch?: string;\n /** Used to perform an operation only if the targeted resource's etag does not match the value provided. */\n ifNoneMatch?: string;\n}\n\n/** Contains response data for the checkSnapshot operation. */\nexport type CheckSnapshotResponse = GeneratedClientCheckSnapshotHeaders;\n\n/** Optional parameters. */\nexport interface GetLabelsOptionalParams extends coreClient.OperationOptions {\n /** A filter for the name of the returned labels. */\n name?: string;\n /** Instructs the server to return elements that appear after the element referred to by the specified token. */\n after?: string;\n /** Requests the server to respond with the state of the resource at the specified time. */\n acceptDatetime?: string;\n /** Used to select what fields are present in the returned resource(s). */\n select?: LabelFields[];\n}\n\n/** Contains response data for the getLabels operation. */\nexport type GetLabelsResponse = GeneratedClientGetLabelsHeaders &\n LabelListResult;\n\n/** Optional parameters. */\nexport interface CheckLabelsOptionalParams extends coreClient.OperationOptions {\n /** A filter for the name of the returned labels. */\n name?: string;\n /** Instructs the server to return elements that appear after the element referred to by the specified token. */\n after?: string;\n /** Requests the server to respond with the state of the resource at the specified time. */\n acceptDatetime?: string;\n /** Used to select what fields are present in the returned resource(s). */\n select?: LabelFields[];\n}\n\n/** Contains response data for the checkLabels operation. */\nexport type CheckLabelsResponse = GeneratedClientCheckLabelsHeaders;\n\n/** Optional parameters. */\nexport interface PutLockOptionalParams extends coreClient.OperationOptions {\n /** The label, if any, of the key-value to lock. */\n label?: string;\n /** Used to perform an operation only if the targeted resource's etag matches the value provided. */\n ifMatch?: string;\n /** Used to perform an operation only if the targeted resource's etag does not match the value provided. */\n ifNoneMatch?: string;\n}\n\n/** Contains response data for the putLock operation. */\nexport type PutLockResponse = GeneratedClientPutLockHeaders &\n ConfigurationSetting;\n\n/** Optional parameters. */\nexport interface DeleteLockOptionalParams extends coreClient.OperationOptions {\n /** The label, if any, of the key-value to unlock. */\n label?: string;\n /** Used to perform an operation only if the targeted resource's etag matches the value provided. */\n ifMatch?: string;\n /** Used to perform an operation only if the targeted resource's etag does not match the value provided. */\n ifNoneMatch?: string;\n}\n\n/** Contains response data for the deleteLock operation. */\nexport type DeleteLockResponse = GeneratedClientDeleteLockHeaders &\n ConfigurationSetting;\n\n/** Optional parameters. */\nexport interface GetRevisionsOptionalParams\n extends coreClient.OperationOptions {\n /** Instructs the server to return elements that appear after the element referred to by the specified token. */\n after?: string;\n /** Requests the server to respond with the state of the resource at the specified time. */\n acceptDatetime?: string;\n /** A filter used to match keys. */\n key?: string;\n /** A filter used to match labels */\n label?: string;\n /** Used to select what fields are present in the returned resource(s). */\n select?: KeyValueFields[];\n}\n\n/** Contains response data for the getRevisions operation. */\nexport type GetRevisionsResponse = GeneratedClientGetRevisionsHeaders &\n KeyValueListResult;\n\n/** Optional parameters. */\nexport interface CheckRevisionsOptionalParams\n extends coreClient.OperationOptions {\n /** Instructs the server to return elements that appear after the element referred to by the specified token. */\n after?: string;\n /** Requests the server to respond with the state of the resource at the specified time. */\n acceptDatetime?: string;\n /** A filter used to match keys. */\n key?: string;\n /** A filter used to match labels */\n label?: string;\n /** Used to select what fields are present in the returned resource(s). */\n select?: KeyValueFields[];\n}\n\n/** Contains response data for the checkRevisions operation. */\nexport type CheckRevisionsResponse = GeneratedClientCheckRevisionsHeaders;\n\n/** Optional parameters. */\nexport interface GetOperationDetailsOptionalParams\n extends coreClient.OperationOptions {}\n\n/** Contains response data for the getOperationDetails operation. */\nexport type GetOperationDetailsResponse = OperationDetails;\n\n/** Optional parameters. */\nexport interface GetKeysNextOptionalParams extends coreClient.OperationOptions {\n /** A filter for the name of the returned keys. */\n name?: string;\n /** Instructs the server to return elements that appear after the element referred to by the specified token. */\n after?: string;\n /** Requests the server to respond with the state of the resource at the specified time. */\n acceptDatetime?: string;\n}\n\n/** Contains response data for the getKeysNext operation. */\nexport type GetKeysNextResponse = GeneratedClientGetKeysNextHeaders &\n KeyListResult;\n\n/** Optional parameters. */\nexport interface GetKeyValuesNextOptionalParams\n extends coreClient.OperationOptions {\n /** Instructs the server to return elements that appear after the element referred to by the specified token. */\n after?: string;\n /** Requests the server to respond with the state of the resource at the specified time. */\n acceptDatetime?: string;\n /** A filter used to match keys. */\n key?: string;\n /** A filter used to match labels */\n label?: string;\n /** Used to select what fields are present in the returned resource(s). */\n select?: KeyValueFields[];\n /** A filter used get key-values for a snapshot. The value should be the name of the snapshot. Not valid when used with 'key' and 'label' filters. */\n snapshot?: string;\n /** Used to perform an operation only if the targeted resource's etag matches the value provided. */\n ifMatch?: string;\n /** Used to perform an operation only if the targeted resource's etag does not match the value provided. */\n ifNoneMatch?: string;\n}\n\n/** Contains response data for the getKeyValuesNext operation. */\nexport type GetKeyValuesNextResponse = GeneratedClientGetKeyValuesNextHeaders &\n KeyValueListResult;\n\n/** Optional parameters. */\nexport interface GetSnapshotsNextOptionalParams\n extends coreClient.OperationOptions {\n /** A filter for the name of the returned snapshots. */\n name?: string;\n /** Instructs the server to return elements that appear after the element referred to by the specified token. */\n after?: string;\n /** Used to select what fields are present in the returned resource(s). */\n select?: SnapshotFields[];\n /** Used to filter returned snapshots by their status property. */\n status?: SnapshotStatus[];\n}\n\n/** Contains response data for the getSnapshotsNext operation. */\nexport type GetSnapshotsNextResponse = GeneratedClientGetSnapshotsNextHeaders &\n SnapshotListResult;\n\n/** Optional parameters. */\nexport interface GetLabelsNextOptionalParams\n extends coreClient.OperationOptions {\n /** A filter for the name of the returned labels. */\n name?: string;\n /** Instructs the server to return elements that appear after the element referred to by the specified token. */\n after?: string;\n /** Requests the server to respond with the state of the resource at the specified time. */\n acceptDatetime?: string;\n /** Used to select what fields are present in the returned resource(s). */\n select?: LabelFields[];\n}\n\n/** Contains response data for the getLabelsNext operation. */\nexport type GetLabelsNextResponse = GeneratedClientGetLabelsNextHeaders &\n LabelListResult;\n\n/** Optional parameters. */\nexport interface GetRevisionsNextOptionalParams\n extends coreClient.OperationOptions {\n /** Instructs the server to return elements that appear after the element referred to by the specified token. */\n after?: string;\n /** Requests the server to respond with the state of the resource at the specified time. */\n acceptDatetime?: string;\n /** A filter used to match keys. */\n key?: string;\n /** A filter used to match labels */\n label?: string;\n /** Used to select what fields are present in the returned resource(s). */\n select?: KeyValueFields[];\n}\n\n/** Contains response data for the getRevisionsNext operation. */\nexport type GetRevisionsNextResponse = GeneratedClientGetRevisionsNextHeaders &\n KeyValueListResult;\n\n/** Optional parameters. */\nexport interface GeneratedClientOptionalParams\n extends coreClient.ServiceClientOptions {\n /** Used to guarantee real-time consistency between requests. */\n syncToken?: string;\n /** Api Version */\n apiVersion?: string;\n /** Overrides client endpoint. */\n endpoint?: string;\n}\n"]}
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
import * as coreClient from "@azure/core-client";
|
|
2
|
-
export declare const KeyListResult: coreClient.CompositeMapper;
|
|
3
|
-
export declare const Key: coreClient.CompositeMapper;
|
|
4
|
-
export declare const ErrorModel: coreClient.CompositeMapper;
|
|
5
|
-
export declare const KeyValueListResult: coreClient.CompositeMapper;
|
|
6
|
-
export declare const ConfigurationSetting: coreClient.CompositeMapper;
|
|
7
|
-
export declare const SnapshotListResult: coreClient.CompositeMapper;
|
|
8
|
-
export declare const Snapshot: coreClient.CompositeMapper;
|
|
9
|
-
export declare const KeyValueFilter: coreClient.CompositeMapper;
|
|
10
|
-
export declare const SnapshotUpdateParameters: coreClient.CompositeMapper;
|
|
11
|
-
export declare const LabelListResult: coreClient.CompositeMapper;
|
|
12
|
-
export declare const Label: coreClient.CompositeMapper;
|
|
13
|
-
export declare const OperationDetails: coreClient.CompositeMapper;
|
|
14
|
-
export declare const ErrorDetail: coreClient.CompositeMapper;
|
|
15
|
-
export declare const InnerError: coreClient.CompositeMapper;
|
|
16
|
-
export declare const GeneratedClientGetKeysHeaders: coreClient.CompositeMapper;
|
|
17
|
-
export declare const GeneratedClientCheckKeysHeaders: coreClient.CompositeMapper;
|
|
18
|
-
export declare const GeneratedClientGetKeyValuesHeaders: coreClient.CompositeMapper;
|
|
19
|
-
export declare const GeneratedClientCheckKeyValuesHeaders: coreClient.CompositeMapper;
|
|
20
|
-
export declare const GeneratedClientGetKeyValueHeaders: coreClient.CompositeMapper;
|
|
21
|
-
export declare const GeneratedClientPutKeyValueHeaders: coreClient.CompositeMapper;
|
|
22
|
-
export declare const GeneratedClientDeleteKeyValueHeaders: coreClient.CompositeMapper;
|
|
23
|
-
export declare const GeneratedClientCheckKeyValueHeaders: coreClient.CompositeMapper;
|
|
24
|
-
export declare const GeneratedClientGetSnapshotsHeaders: coreClient.CompositeMapper;
|
|
25
|
-
export declare const GeneratedClientCheckSnapshotsHeaders: coreClient.CompositeMapper;
|
|
26
|
-
export declare const GeneratedClientGetSnapshotHeaders: coreClient.CompositeMapper;
|
|
27
|
-
export declare const GeneratedClientCreateSnapshotHeaders: coreClient.CompositeMapper;
|
|
28
|
-
export declare const GeneratedClientUpdateSnapshotHeaders: coreClient.CompositeMapper;
|
|
29
|
-
export declare const GeneratedClientCheckSnapshotHeaders: coreClient.CompositeMapper;
|
|
30
|
-
export declare const GeneratedClientGetLabelsHeaders: coreClient.CompositeMapper;
|
|
31
|
-
export declare const GeneratedClientCheckLabelsHeaders: coreClient.CompositeMapper;
|
|
32
|
-
export declare const GeneratedClientPutLockHeaders: coreClient.CompositeMapper;
|
|
33
|
-
export declare const GeneratedClientDeleteLockHeaders: coreClient.CompositeMapper;
|
|
34
|
-
export declare const GeneratedClientGetRevisionsHeaders: coreClient.CompositeMapper;
|
|
35
|
-
export declare const GeneratedClientCheckRevisionsHeaders: coreClient.CompositeMapper;
|
|
36
|
-
export declare const GeneratedClientGetKeysNextHeaders: coreClient.CompositeMapper;
|
|
37
|
-
export declare const GeneratedClientGetKeyValuesNextHeaders: coreClient.CompositeMapper;
|
|
38
|
-
export declare const GeneratedClientGetSnapshotsNextHeaders: coreClient.CompositeMapper;
|
|
39
|
-
export declare const GeneratedClientGetLabelsNextHeaders: coreClient.CompositeMapper;
|
|
40
|
-
export declare const GeneratedClientGetRevisionsNextHeaders: coreClient.CompositeMapper;
|
|
41
|
-
//# sourceMappingURL=mappers.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"mappers.d.ts","sourceRoot":"","sources":["../../../../src/generated/models/mappers.ts"],"names":[],"mappings":"AAQA,OAAO,KAAK,UAAU,MAAM,oBAAoB,CAAC;AAEjD,eAAO,MAAM,aAAa,EAAE,UAAU,CAAC,eAyBtC,CAAC;AAEF,eAAO,MAAM,GAAG,EAAE,UAAU,CAAC,eAc5B,CAAC;AAEF,eAAO,MAAM,UAAU,EAAE,UAAU,CAAC,eAqCnC,CAAC;AAEF,eAAO,MAAM,kBAAkB,EAAE,UAAU,CAAC,eA+B3C,CAAC;AAEF,eAAO,MAAM,oBAAoB,EAAE,UAAU,CAAC,eAwD7C,CAAC;AAEF,eAAO,MAAM,kBAAkB,EAAE,UAAU,CAAC,eAyB3C,CAAC;AAEF,eAAO,MAAM,QAAQ,EAAE,UAAU,CAAC,eAgGjC,CAAC;AAEF,eAAO,MAAM,cAAc,EAAE,UAAU,CAAC,eAoBvC,CAAC;AAEF,eAAO,MAAM,wBAAwB,EAAE,UAAU,CAAC,eAajD,CAAC;AAEF,eAAO,MAAM,eAAe,EAAE,UAAU,CAAC,eAyBxC,CAAC;AAEF,eAAO,MAAM,KAAK,EAAE,UAAU,CAAC,eAc9B,CAAC;AAEF,eAAO,MAAM,gBAAgB,EAAE,UAAU,CAAC,eAmCzC,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,UAAU,CAAC,eAwCpC,CAAC;AAEF,eAAO,MAAM,UAAU,EAAE,UAAU,CAAC,eAoBnC,CAAC;AAEF,eAAO,MAAM,6BAA6B,EAAE,UAAU,CAAC,eAatD,CAAC;AAEF,eAAO,MAAM,+BAA+B,EAAE,UAAU,CAAC,eAaxD,CAAC;AAEF,eAAO,MAAM,kCAAkC,EAAE,UAAU,CAAC,eAmB3D,CAAC;AAEF,eAAO,MAAM,oCAAoC,EAAE,UAAU,CAAC,eAmB7D,CAAC;AAEF,eAAO,MAAM,iCAAiC,EAAE,UAAU,CAAC,eAmB1D,CAAC;AAEF,eAAO,MAAM,iCAAiC,EAAE,UAAU,CAAC,eAmB1D,CAAC;AAEF,eAAO,MAAM,oCAAoC,EAAE,UAAU,CAAC,eAmB7D,CAAC;AAEF,eAAO,MAAM,mCAAmC,EAAE,UAAU,CAAC,eAmB5D,CAAC;AAEF,eAAO,MAAM,kCAAkC,EAAE,UAAU,CAAC,eAa3D,CAAC;AAEF,eAAO,MAAM,oCAAoC,EAAE,UAAU,CAAC,eAa7D,CAAC;AAEF,eAAO,MAAM,iCAAiC,EAAE,UAAU,CAAC,eAyB1D,CAAC;AAEF,eAAO,MAAM,oCAAoC,EAAE,UAAU,CAAC,eA+B7D,CAAC;AAEF,eAAO,MAAM,oCAAoC,EAAE,UAAU,CAAC,eAyB7D,CAAC;AAEF,eAAO,MAAM,mCAAmC,EAAE,UAAU,CAAC,eAyB5D,CAAC;AAEF,eAAO,MAAM,+BAA+B,EAAE,UAAU,CAAC,eAaxD,CAAC;AAEF,eAAO,MAAM,iCAAiC,EAAE,UAAU,CAAC,eAa1D,CAAC;AAEF,eAAO,MAAM,6BAA6B,EAAE,UAAU,CAAC,eAmBtD,CAAC;AAEF,eAAO,MAAM,gCAAgC,EAAE,UAAU,CAAC,eAmBzD,CAAC;AAEF,eAAO,MAAM,kCAAkC,EAAE,UAAU,CAAC,eAmB3D,CAAC;AAEF,eAAO,MAAM,oCAAoC,EAAE,UAAU,CAAC,eAmB7D,CAAC;AAEF,eAAO,MAAM,iCAAiC,EAAE,UAAU,CAAC,eAa1D,CAAC;AAEF,eAAO,MAAM,sCAAsC,EAAE,UAAU,CAAC,eAmB/D,CAAC;AAEF,eAAO,MAAM,sCAAsC,EAAE,UAAU,CAAC,eAa/D,CAAC;AAEF,eAAO,MAAM,mCAAmC,EAAE,UAAU,CAAC,eAa5D,CAAC;AAEF,eAAO,MAAM,sCAAsC,EAAE,UAAU,CAAC,eAmB/D,CAAC"}
|