@intentius/chant-lexicon-fly 0.59.0 → 0.61.0

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.
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "algorithm": "sha256",
3
3
  "artifacts": {
4
- "manifest.json": "9403d7d41b8c5a0267c4a9c0938786fb140818a31976636a54f09967a7d32225",
4
+ "manifest.json": "d7a46a468e80b85269f4b867abef32903ffb57ffa286cf71de78967a095ec00f",
5
5
  "meta.json": "e46e65ba7544fafc6dbb3fd48b841904b5ae6f7cb4d517a940ed68b01626c097",
6
- "types/index.d.ts": "4d0f9fa32bddbce96e6de87f948b4abaa4222d31dcec74ff3b39344c376ee4cb",
6
+ "types/index.d.ts": "f2b1e6908d2ff33662ffe978452d9427dd7c0366edd88b5bfa7a8fc744517bfd",
7
7
  "rules/guest-sizing.ts": "bc749d218df8f3cc3d8fbe388205ae96e6b204ae0d6d77e8bf82cb936cc53ff6",
8
8
  "rules/no-secret-literals.ts": "4846d55118c9a66ad524b815ac28c3f548bfe114d5899e79c394f271c8b2c478",
9
9
  "rules/valid-region.ts": "674550b3b112aa1e526572b319601dce0c1a84f537c05b1e07828f8b84511c75",
@@ -15,5 +15,5 @@
15
15
  "skills/chant-fly-ops.md": "b8eef6504e203133e6a35c83aabb08404eec95060705395515a0046d42269cf1",
16
16
  "skills/chant-fly-sprites.md": "3ebbbd9a2751b91fc573c21bafa9a8e490c53e1bdcee16cc61f4051c9e12e526"
17
17
  },
18
- "composite": "8e7c33f3102f459202eb5cd791edfc2313be087e65bb2be7f22a029b624dd8fa"
18
+ "composite": "2ae2cd88ff288b4dbba9e63fe5cf950202c801e4b2417d96870fd1558065a8d7"
19
19
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fly",
3
- "version": "0.59.0",
3
+ "version": "0.61.0",
4
4
  "chantVersion": ">=0.1.0",
5
5
  "namespace": "Fly"
6
6
  }
@@ -11,6 +11,7 @@ resource_type: Fly::Machines::App
11
11
  ## Properties
12
12
 
13
13
  - `enable_subdomains` (`boolean`, optional)
14
+ - `idempotency_key` (`string`, optional): When set, makes a retry of this exact request safe: a second create with the same key and the same name (or no name) returns the app the first request created, instead of erroring on a false name conflict or creating a duplicate. A second create with the same key but a *different* name is rejected outright; it won't silently hand back the first app.
14
15
  - `name` (`string`, optional)
15
16
  - `network` (`string`, optional)
16
17
  - `org_slug` (`string`, optional)
@@ -5,6 +5,13 @@
5
5
  export declare class App {
6
6
  constructor(props: {
7
7
  enable_subdomains?: boolean;
8
+ /** When set, makes a retry of this exact request safe: a
9
+ second create with the same key and the same name (or no name) returns
10
+ the app the first request created, instead of erroring on a false name
11
+ conflict or creating a duplicate. A second create with the same key
12
+ but a *different* name is rejected outright; it won't silently
13
+ hand back the first app. */
14
+ idempotency_key?: string;
8
15
  name?: string;
9
16
  network?: string;
10
17
  org_slug?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@intentius/chant-lexicon-fly",
3
- "version": "0.59.0",
3
+ "version": "0.61.0",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "src/",
@@ -62,7 +62,7 @@
62
62
  "typescript": "^5.9.3"
63
63
  },
64
64
  "peerDependencies": {
65
- "@intentius/chant": "^0.59.0",
65
+ "@intentius/chant": "^0.61.0",
66
66
  "typescript": "^5.9.3"
67
67
  },
68
68
  "description": "Fly.io Machines lexicon for chant — declarative IaC in TypeScript",
@@ -5,6 +5,13 @@
5
5
  export declare class App {
6
6
  constructor(props: {
7
7
  enable_subdomains?: boolean;
8
+ /** When set, makes a retry of this exact request safe: a
9
+ second create with the same key and the same name (or no name) returns
10
+ the app the first request created, instead of erroring on a false name
11
+ conflict or creating a duplicate. A second create with the same key
12
+ but a *different* name is rejected outright; it won't silently
13
+ hand back the first app. */
14
+ idempotency_key?: string;
8
15
  name?: string;
9
16
  network?: string;
10
17
  org_slug?: string;